You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by Thomas Neidhart <th...@gmail.com> on 2013/03/28 11:38:38 UTC

Re: svn commit: r1462012 - in /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml: clustering/ distance/

On Thu, Mar 28, 2013 at 10:53 AM, <lu...@apache.org> wrote:

> Author: luc
> Date: Thu Mar 28 09:53:56 2013
> New Revision: 1462012
>
> URL: http://svn.apache.org/r1462012
> Log:
> Adding missing headers.
>

Hi Luc,

Thanks, I should enable the header check again ;-).

Thomas


>
> Modified:
>
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/clustering/CentroidCluster.java
>
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/clustering/Clusterer.java
>
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/CanberraDistance.java
>
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/ChebyshevDistance.java
>
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/DistanceMeasure.java
>
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/EuclideanDistance.java
>
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/ManhattanDistance.java
>
> Modified:
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/clustering/CentroidCluster.java
> URL:
> http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/clustering/CentroidCluster.java?rev=1462012&r1=1462011&r2=1462012&view=diff
>
> ==============================================================================
> ---
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/clustering/CentroidCluster.java
> (original)
> +++
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/clustering/CentroidCluster.java
> Thu Mar 28 09:53:56 2013
> @@ -1,3 +1,19 @@
> +/*
> + * Licensed to the Apache Software Foundation (ASF) under one or more
> + * contributor license agreements.  See the NOTICE file distributed with
> + * this work for additional information regarding copyright ownership.
> + * The ASF licenses this file to You under the Apache License, Version 2.0
> + * (the "License"); you may not use this file except in compliance with
> + * the License.  You may obtain a copy of the License at
> + *
> + *      http://www.apache.org/licenses/LICENSE-2.0
> + *
> + * Unless required by applicable law or agreed to in writing, software
> + * distributed under the License is distributed on an "AS IS" BASIS,
> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
> implied.
> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
>  package org.apache.commons.math3.ml.clustering;
>
>  /**
>
> Modified:
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/clustering/Clusterer.java
> URL:
> http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/clustering/Clusterer.java?rev=1462012&r1=1462011&r2=1462012&view=diff
>
> ==============================================================================
> ---
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/clustering/Clusterer.java
> (original)
> +++
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/clustering/Clusterer.java
> Thu Mar 28 09:53:56 2013
> @@ -1,3 +1,19 @@
> +/*
> + * Licensed to the Apache Software Foundation (ASF) under one or more
> + * contributor license agreements.  See the NOTICE file distributed with
> + * this work for additional information regarding copyright ownership.
> + * The ASF licenses this file to You under the Apache License, Version 2.0
> + * (the "License"); you may not use this file except in compliance with
> + * the License.  You may obtain a copy of the License at
> + *
> + *      http://www.apache.org/licenses/LICENSE-2.0
> + *
> + * Unless required by applicable law or agreed to in writing, software
> + * distributed under the License is distributed on an "AS IS" BASIS,
> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
> implied.
> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
>  package org.apache.commons.math3.ml.clustering;
>
>  import java.util.Collection;
>
> Modified:
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/CanberraDistance.java
> URL:
> http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/CanberraDistance.java?rev=1462012&r1=1462011&r2=1462012&view=diff
>
> ==============================================================================
> ---
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/CanberraDistance.java
> (original)
> +++
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/CanberraDistance.java
> Thu Mar 28 09:53:56 2013
> @@ -1,3 +1,19 @@
> +/*
> + * Licensed to the Apache Software Foundation (ASF) under one or more
> + * contributor license agreements.  See the NOTICE file distributed with
> + * this work for additional information regarding copyright ownership.
> + * The ASF licenses this file to You under the Apache License, Version 2.0
> + * (the "License"); you may not use this file except in compliance with
> + * the License.  You may obtain a copy of the License at
> + *
> + *      http://www.apache.org/licenses/LICENSE-2.0
> + *
> + * Unless required by applicable law or agreed to in writing, software
> + * distributed under the License is distributed on an "AS IS" BASIS,
> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
> implied.
> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
>  package org.apache.commons.math3.ml.distance;
>
>  import org.apache.commons.math3.util.FastMath;
>
> Modified:
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/ChebyshevDistance.java
> URL:
> http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/ChebyshevDistance.java?rev=1462012&r1=1462011&r2=1462012&view=diff
>
> ==============================================================================
> ---
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/ChebyshevDistance.java
> (original)
> +++
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/ChebyshevDistance.java
> Thu Mar 28 09:53:56 2013
> @@ -1,3 +1,19 @@
> +/*
> + * Licensed to the Apache Software Foundation (ASF) under one or more
> + * contributor license agreements.  See the NOTICE file distributed with
> + * this work for additional information regarding copyright ownership.
> + * The ASF licenses this file to You under the Apache License, Version 2.0
> + * (the "License"); you may not use this file except in compliance with
> + * the License.  You may obtain a copy of the License at
> + *
> + *      http://www.apache.org/licenses/LICENSE-2.0
> + *
> + * Unless required by applicable law or agreed to in writing, software
> + * distributed under the License is distributed on an "AS IS" BASIS,
> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
> implied.
> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
>  package org.apache.commons.math3.ml.distance;
>
>  import org.apache.commons.math3.util.MathArrays;
>
> Modified:
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/DistanceMeasure.java
> URL:
> http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/DistanceMeasure.java?rev=1462012&r1=1462011&r2=1462012&view=diff
>
> ==============================================================================
> ---
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/DistanceMeasure.java
> (original)
> +++
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/DistanceMeasure.java
> Thu Mar 28 09:53:56 2013
> @@ -1,3 +1,19 @@
> +/*
> + * Licensed to the Apache Software Foundation (ASF) under one or more
> + * contributor license agreements.  See the NOTICE file distributed with
> + * this work for additional information regarding copyright ownership.
> + * The ASF licenses this file to You under the Apache License, Version 2.0
> + * (the "License"); you may not use this file except in compliance with
> + * the License.  You may obtain a copy of the License at
> + *
> + *      http://www.apache.org/licenses/LICENSE-2.0
> + *
> + * Unless required by applicable law or agreed to in writing, software
> + * distributed under the License is distributed on an "AS IS" BASIS,
> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
> implied.
> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
>  package org.apache.commons.math3.ml.distance;
>
>  import java.io.Serializable;
>
> Modified:
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/EuclideanDistance.java
> URL:
> http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/EuclideanDistance.java?rev=1462012&r1=1462011&r2=1462012&view=diff
>
> ==============================================================================
> ---
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/EuclideanDistance.java
> (original)
> +++
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/EuclideanDistance.java
> Thu Mar 28 09:53:56 2013
> @@ -1,3 +1,19 @@
> +/*
> + * Licensed to the Apache Software Foundation (ASF) under one or more
> + * contributor license agreements.  See the NOTICE file distributed with
> + * this work for additional information regarding copyright ownership.
> + * The ASF licenses this file to You under the Apache License, Version 2.0
> + * (the "License"); you may not use this file except in compliance with
> + * the License.  You may obtain a copy of the License at
> + *
> + *      http://www.apache.org/licenses/LICENSE-2.0
> + *
> + * Unless required by applicable law or agreed to in writing, software
> + * distributed under the License is distributed on an "AS IS" BASIS,
> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
> implied.
> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
>  package org.apache.commons.math3.ml.distance;
>
>  import org.apache.commons.math3.util.MathArrays;
>
> Modified:
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/ManhattanDistance.java
> URL:
> http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/ManhattanDistance.java?rev=1462012&r1=1462011&r2=1462012&view=diff
>
> ==============================================================================
> ---
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/ManhattanDistance.java
> (original)
> +++
> commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml/distance/ManhattanDistance.java
> Thu Mar 28 09:53:56 2013
> @@ -1,3 +1,19 @@
> +/*
> + * Licensed to the Apache Software Foundation (ASF) under one or more
> + * contributor license agreements.  See the NOTICE file distributed with
> + * this work for additional information regarding copyright ownership.
> + * The ASF licenses this file to You under the Apache License, Version 2.0
> + * (the "License"); you may not use this file except in compliance with
> + * the License.  You may obtain a copy of the License at
> + *
> + *      http://www.apache.org/licenses/LICENSE-2.0
> + *
> + * Unless required by applicable law or agreed to in writing, software
> + * distributed under the License is distributed on an "AS IS" BASIS,
> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
> implied.
> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
>  package org.apache.commons.math3.ml.distance;
>
>  import org.apache.commons.math3.util.MathArrays;
>
>
>