Skip to content

Commit d5d6f8f

Browse files
authored
chore: rename old filename (#18)
1 parent 8e8318c commit d5d6f8f

File tree

5 files changed

+4
-3
lines changed

5 files changed

+4
-3
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
CHANGELOG.md
2+
benchmark/old

benchmark/benchmarkLinePlot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { xSequentialFillFromStep } from 'ml-spectra-processing';
33

44
import { SparseMatrix } from '../src/index.js';
55

6-
import { SparseMatrix as SparseMatrixOld } from './class/SparseMatrixOld.js';
6+
import { SparseMatrix as SparseMatrixOld } from './old/index.js';
77
import { randomMatrix } from './utils/randomMatrix.js';
88

99
const density = 0.02; // Fixed density for this comparison;

benchmark/densityDecreaseWhenSizeIncrease.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { bench, do_not_optimize, group, run } from 'mitata';
33
// import { Matrix } from 'ml-matrix';
44
import { SparseMatrix } from '../src/index.js';
55

6-
import { SparseMatrix as SparseMatrixOld } from './class/SparseMatrixOld.js';
6+
import { SparseMatrix as SparseMatrixOld } from './old/index.js';
77
import { randomMatrix } from './utils/randomMatrix.js';
88

99
const sizes = [8, 16, 32, 256, 512, 1024];
File renamed without changes.

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineConfig, globalIgnores } from 'eslint/config';
22
import ts from 'eslint-config-cheminfo-typescript/base';
33

4-
export default defineConfig(globalIgnores(['benchmark/class/*', 'lib']), ts, {
4+
export default defineConfig(globalIgnores(['benchmark/old', 'lib']), ts, {
55
files: ['benchmark/**'],
66
rules: {
77
camelcase: 'off',

0 commit comments

Comments
 (0)