File tree Expand file tree Collapse file tree 4 files changed +40
-3
lines changed
main/java/org/apache/sysds/runtime/compress/colgroup
test/java/org/apache/sysds/test/component/compress/colgroup Expand file tree Collapse file tree 4 files changed +40
-3
lines changed Original file line number Diff line number Diff line change @@ -322,7 +322,6 @@ int next() {
322322 }
323323 }
324324
325-
326325 /**
327326 * Builds a packed 64-bit key from a prefix code and a next symbol, typically used in an LZW dictionary.
328327 *
Original file line number Diff line number Diff line change 1+ /*
2+ * Licensed to the Apache Software Foundation (ASF) under one
3+ * or more contributor license agreements. See the NOTICE file
4+ * distributed with this work for additional information
5+ * regarding copyright ownership. The ASF licenses this file
6+ * to you under the Apache License, Version 2.0 (the
7+ * "License"); you may not use this file except in compliance
8+ * with the License. You may obtain a copy of the License at
9+ *
10+ * http://www.apache.org/licenses/LICENSE-2.0
11+ *
12+ * Unless required by applicable law or agreed to in writing,
13+ * software distributed under the License is distributed on an
14+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+ * KIND, either express or implied. See the License for the
16+ * specific language governing permissions and limitations
17+ * under the License.
18+ */
19+
120package org .apache .sysds .runtime .compress .colgroup .scheme ;
221
322import org .apache .sysds .runtime .compress .DMLCompressionException ;
Original file line number Diff line number Diff line change 1+ /*
2+ * Licensed to the Apache Software Foundation (ASF) under one
3+ * or more contributor license agreements. See the NOTICE file
4+ * distributed with this work for additional information
5+ * regarding copyright ownership. The ASF licenses this file
6+ * to you under the Apache License, Version 2.0 (the
7+ * "License"); you may not use this file except in compliance
8+ * with the License. You may obtain a copy of the License at
9+ *
10+ * http://www.apache.org/licenses/LICENSE-2.0
11+ *
12+ * Unless required by applicable law or agreed to in writing,
13+ * software distributed under the License is distributed on an
14+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+ * KIND, either express or implied. See the License for the
16+ * specific language governing permissions and limitations
17+ * under the License.
18+ */
19+
120package org .apache .sysds .runtime .compress .colgroup .scheme ;
221
322import org .apache .sysds .runtime .compress .DMLCompressionException ;
Original file line number Diff line number Diff line change @@ -410,7 +410,7 @@ public void testRepetitiveData() {
410410 assertLosslessCompression (ddc );
411411 }
412412
413- public void assertLosslessCompression_NoRepetition (ColGroupDDCLZW original , int nRows ) {
413+ public void assertLosslessCompressionNoRepetition (ColGroupDDCLZW original , int nRows ) {
414414 AColGroup decompressed = original .convertToDDC ();
415415 assertNotNull (decompressed );
416416 assertTrue (decompressed instanceof ColGroupDDC );
@@ -439,7 +439,7 @@ public void testNoRepetition() {
439439 assertNotNull (cg );
440440 assertTrue (cg instanceof ColGroupDDCLZW );
441441
442- assertLosslessCompression_NoRepetition ((ColGroupDDCLZW ) cg , 20 );
442+ assertLosslessCompressionNoRepetition ((ColGroupDDCLZW ) cg , 20 );
443443 }
444444
445445 public void testDecompressToDenseBlock (double [][] data , boolean isTransposed ) {
You can’t perform that action at this time.
0 commit comments