12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #!/bin/bash
- echo Compile with gcc -O2
- rm -f *.bin
- rm -f ../scattnlay
- clang++ -g -O1 -fsanitize=address -fno-optimize-sibling-calls -fno-omit-frame-pointer -std=c++11 compare.cc nmie.cc nmie-wrapper.cc -lm -lrt -o scattnlay.bin
- cp scattnlay.bin ../scattnlay
- cd tests/shell
- PROGRAM='../../../scattnlay'
- echo BUG -- All designs should give almost the same answer
- $PROGRAM -l 2 4.71238898038469 2 0.0001 9.42477796076937 1.5 0.0001
- $PROGRAM -l 2 4.71238898038469 2 0.0001 9.42477796076938 1.5 0.0001
- echo
|