Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1E953F688 for ; Thu, 28 Mar 2013 09:54:28 +0000 (UTC) Received: (qmail 74475 invoked by uid 500); 28 Mar 2013 09:54:27 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 73995 invoked by uid 500); 28 Mar 2013 09:54:21 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 73950 invoked by uid 99); 28 Mar 2013 09:54:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Mar 2013 09:54:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Mar 2013 09:54:17 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 8D0BB238889B; Thu, 28 Mar 2013 09:53:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1462012 - in /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ml: clustering/ distance/ Date: Thu, 28 Mar 2013 09:53:57 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130328095357.8D0BB238889B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: luc Date: Thu Mar 28 09:53:56 2013 New Revision: 1462012 URL: http://svn.apache.org/r1462012 Log: Adding missing headers. 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;