You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- # THIS SCRIPT RUNS THE SPARSELIZARD EXECUTABLE
-
-
- if [ "$(uname)" == "Linux" ]; then
- LD_LIBRARY_PATH="$HOME/SLlibs/petsc/arch-linux2-c-opt/lib":$LD_LIBRARY_PATH
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH
- elif [ "$(uname)" == "Darwin" ]; then
- DYLD_LIBRARY_PATH="$HOME/SLlibs/petsc/arch-darwin-c-opt/lib":$DYLD_LIBRARY_PATH
- export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH
- fi
-
-
- ./sparselizard;
|