You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by sr...@apache.org on 2010/05/22 18:52:05 UTC

svn commit: r947317 - in /mahout/trunk/math/src: main/java/org/apache/mahout/math/ main/java/org/apache/mahout/math/matrix/impl/ test/java/org/apache/mahout/math/stats/

Author: srowen
Date: Sat May 22 16:52:05 2010
New Revision: 947317

URL: http://svn.apache.org/viewvc?rev=947317&view=rev
Log:
Standardize a few copyrights

Modified:
    mahout/trunk/math/src/main/java/org/apache/mahout/math/OrthonormalityVerifier.java
    mahout/trunk/math/src/main/java/org/apache/mahout/math/VectorIterable.java
    mahout/trunk/math/src/main/java/org/apache/mahout/math/matrix/impl/FormerFactory.java
    mahout/trunk/math/src/test/java/org/apache/mahout/math/stats/LogLikelihoodTest.java

Modified: mahout/trunk/math/src/main/java/org/apache/mahout/math/OrthonormalityVerifier.java
URL: http://svn.apache.org/viewvc/mahout/trunk/math/src/main/java/org/apache/mahout/math/OrthonormalityVerifier.java?rev=947317&r1=947316&r2=947317&view=diff
==============================================================================
--- mahout/trunk/math/src/main/java/org/apache/mahout/math/OrthonormalityVerifier.java (original)
+++ mahout/trunk/math/src/main/java/org/apache/mahout/math/OrthonormalityVerifier.java Sat May 22 16:52:05 2010
@@ -1,3 +1,20 @@
+/**
+ * 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.mahout.math;
 
 import java.util.ArrayList;

Modified: mahout/trunk/math/src/main/java/org/apache/mahout/math/VectorIterable.java
URL: http://svn.apache.org/viewvc/mahout/trunk/math/src/main/java/org/apache/mahout/math/VectorIterable.java?rev=947317&r1=947316&r2=947317&view=diff
==============================================================================
--- mahout/trunk/math/src/main/java/org/apache/mahout/math/VectorIterable.java (original)
+++ mahout/trunk/math/src/main/java/org/apache/mahout/math/VectorIterable.java Sat May 22 16:52:05 2010
@@ -1,8 +1,24 @@
+/**
+ * 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.mahout.math;
 
 import java.util.Iterator;
 
-
 public interface VectorIterable extends Iterable<MatrixSlice> {
 
   Iterator<MatrixSlice> iterateAll();

Modified: mahout/trunk/math/src/main/java/org/apache/mahout/math/matrix/impl/FormerFactory.java
URL: http://svn.apache.org/viewvc/mahout/trunk/math/src/main/java/org/apache/mahout/math/matrix/impl/FormerFactory.java?rev=947317&r1=947316&r2=947317&view=diff
==============================================================================
--- mahout/trunk/math/src/main/java/org/apache/mahout/math/matrix/impl/FormerFactory.java (original)
+++ mahout/trunk/math/src/main/java/org/apache/mahout/math/matrix/impl/FormerFactory.java Sat May 22 16:52:05 2010
@@ -1,3 +1,20 @@
+/**
+ * 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.mahout.math.matrix.impl;
 
 

Modified: mahout/trunk/math/src/test/java/org/apache/mahout/math/stats/LogLikelihoodTest.java
URL: http://svn.apache.org/viewvc/mahout/trunk/math/src/test/java/org/apache/mahout/math/stats/LogLikelihoodTest.java?rev=947317&r1=947316&r2=947317&view=diff
==============================================================================
--- mahout/trunk/math/src/test/java/org/apache/mahout/math/stats/LogLikelihoodTest.java (original)
+++ mahout/trunk/math/src/test/java/org/apache/mahout/math/stats/LogLikelihoodTest.java Sat May 22 16:52:05 2010
@@ -1,4 +1,3 @@
-package org.apache.mahout.math.stats;
 /**
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -16,6 +15,8 @@ package org.apache.mahout.math.stats;
  * limitations under the License.
  */
 
+package org.apache.mahout.math.stats;
+
 import org.apache.mahout.math.MahoutTestCase;
 
 import org.junit.Test;