Skip to content

Commit 2e064c8

Browse files
authored
Merge pull request #4 from mlund/smallvertex
Optimize memory for icotable
2 parents 3f68d0b + 9147a5c commit 2e064c8

File tree

15 files changed

+543
-714
lines changed

15 files changed

+543
-714
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
# will have compiled files and executables
33
debug/
44
target/
5+
*.vmd
6+
*.json
7+
log
8+
*.tga
59

610
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
711
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ The program is written in Rust and attempts to use all available CPU cores.
9393

9494
```sh
9595
duello scan \
96-
--icotable \
9796
--mol1 cppm-p18.xyz \
9897
--mol2 cppm-p18.xyz \
9998
--rmin 37 --rmax 50 --dr 0.5 \

scripts/cppm.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
example=$(basename "$0" .sh)
44

55
cd examples/${example}
6-
RUST_LOG="Info" cargo run --release \
7-
-- scan \
6+
RUST_LOG="Info" cargo run --release -- \
7+
scan \
88
-1 cppm-p18.xyz \
99
-2 cppm-p18.xyz \
10-
--icotable \
1110
--rmin 37 --rmax 121 --dr 0.5 \
1211
--top topology.yaml \
1312
--resolution 0.8 \

0 commit comments

Comments
 (0)