Admin/polyml/polyml
author blanchet
Mon, 26 Apr 2010 21:20:43 +0200
changeset 36402 1b20805974c7
parent 33833 c38c2a1883e7
child 60983 ff4a67c65084
permissions -rwxr-xr-x
introduced direct proof reconstruction code, eliminating the need for the "neg_clausify" method; the code is still somewhat experimental but any exceptions it throws are catched, and Sledgehammer will still yield a one-line metis proof in case of proof reconstruction failure
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33833
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     1
#!/usr/bin/env bash
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     2
#
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     3
# Minimal Poly/ML startup script
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     4
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     5
THIS="$(cd "$(dirname "$0")"; pwd)"
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     6
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     7
export LD_LIBRARY_PATH="$THIS:$LD_LIBRARY_PATH"
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     8
export DYLD_LIBRARY_PATH="$THIS:$DYLD_LIBRARY_PATH"
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     9
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
    10
exec "$THIS/poly" "$@"
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
    11