You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To build, just run make, but see the README in the JJParser
submodule.
To see the flags: GDV -h
Basic usage, including verification of the leaves (-l) from the problem (-p): GDV -l -p TestFiles/TestsForLambdaPi/GEO173+2/GEO173+2.p TestFiles/TestsForLambdaPi/GEO173+2/E---3.0_THM-CRf.s
Only generate the proof obligations: GDV -g -l -p TestFiles/TestsForLambdaPi/GEO173+2/GEO173+2.p TestFiles/TestsForLambdaPi/GEO173+2/E---3.0_THM-CRf.s
LambdaPi usage (GDV-LP)
A FOF example without Skolemization, creating LambdaPi files using ZenonModulo (-L): GDV -L TestFiles.TestsForLambdaPi.TUT001+1 -k TestFiles/TestsForLambdaPi/TUT001+1 -l -p TestFiles/TestsForLambdaPi/TUT001+1/TUT001+1.p TestFiles/TestsForLambdaPi/TUT001+1/E---3.0_THM-CRf.s
A FOF example without Skolemization, calling LambdaPi (-M) to check the LambdaPi files: GDV -M -L TestFiles.TestsForLambdaPi.TUT001+1 -k TestFiles/TestsForLambdaPi/TUT001+1 -l -p TestFiles/TestsForLambdaPi/TUT001+1/TUT001+1.p TestFiles/TestsForLambdaPi/TUT001+1/E---3.0_THM-CRf.s
Use ATP systems and LambdaPi locally (-T) in Miami: GDV -T -M -L TestFiles.TestsForLambdaPi.TUT001+1 -k TestFiles/TestsForLambdaPi/TUT001+1 -l -p TestFiles/TestsForLambdaPi/TUT001+1/TUT001+1.p TestFiles/TestsForLambdaPi/TUT001+1/E---3.0_THM-CRf.s
A FOF example with Skolemization (i.e., verification fails): GDV -M -L TestFiles.TestsForLambdaPi.GEO173+2 -k TestFiles/TestsForLambdaPi/GEO173+2 -l -p TestFiles/TestsForLambdaPi/GEO173+2/GEO173+2.p TestFiles/TestsForLambdaPi/GEO173+2/E---3.2.0_THM-CRf.s
A FOF example with a step too hard for ZenonModulo (i.e., verification fails): GDV -M -L TestFiles.TestsForLambdaPi.SEU140+2 -k TestFiles/TestsForLambdaPi/SEU140+2 -l -p TestFiles/TestsForLambdaPi/SEU140+2/SEU140+2.p TestFiles/TestsForLambdaPi/SEU140+2/CSE---1.7-THM-Ref.s
A TX0 example that ZenonModulo can't process (i.e., verification fails): GDV -M -L TestFiles.TestsForLambdaPi.PUZ081_8 -k TestFiles/TestsForLambdaPi/PUZ081_8 -l -p TestFiles/TestsForLambdaPi/PUZ081_8/PUZ081_8.p TestFiles/TestsForLambdaPi/PUZ081_8/E---3.0_THM-CRf.s
Local notes for Geoff and friends
To get opam going ...
eval `opam env`
To test a proof
lambdapi check Proof.lp
----Something Frederic was using
#!/bin/sh
for f in `ls *.p`
do
case $f in
c_0_*_thm.p) opt='';;
*) opt='-check-axiom';;
esac
echo zenon_modulo $opt $f
~/src/zenon_modulo/zenon_modulo -q -sig TUT001+1.E---3_0_THM-CRf_s_gdv.Signature -itptp -olpterm -neg-conj c_0_5 $opt $f > ${f%.p}.lp
done
PRE>
The GDV algorithm, with LambdaPi part tagged LP:
Main:
Read derivation file
Read problem file
Structural verification
Check formulae are uniquely named
Check all parents of inferred formulae exist
Get the false/conjecture/any root of the derivation
Check that the derivation is acyclic
If checking a refutation
Check there is a false root
Check there is a negated conjecture
Check all formulae are used
Check assumptions have been propagated and discharged at the roots
LP:Write LambdaPi Proof.lp, Signature.lp, lambdapi.pkg files
LP:Create NNPP tag from first negated_conjecture in proof (actually the negated_conjecture)
Leaf verification
Check-by-ATP problem's axiom-like formulae are satisfiable-by-ATP (WARNING)
Check introduced leaves are acceptable
Check axiom-like leaves are satisfiable-by-ATP (WARNING)
Check non-introduced leaves are copied or inferred-by-ATP from the problem
Rule specific verification
Check explicit splits are independent
Check splitting
Check-by-ATP local proofs by contradiction
Derived verification
Check-by-ATP each inferred formulae has specified SZS relationship with its parents
Report verification
Check SZS relationship of Inferred with its Parents:
If SZS is THM or CTH
Check-by-ATP Parents are satisfiable
(or a negated_conjecture in Parents, or Inferred is $false)
If SZS is CTH
Negate the Inferred
Check-by-ATP Inferred CanBeProved from Parents
If SZS is ESA
Try check-by-ATP as THM (unlikely to succeed)
Check-by-ATP Parent is a THM of Target (WARNING)
If SZS is ECS
Try check-by-ATP as CTH (unlikely to succeed)
Check-by-ATP Parent is a CTH of Target (WARNING)
CanBeProved Target from Parents:
If ATP system can prove Target from Parents
LP:Extract lambdipi term from proof into .lp file
LP:For each parent
LP:Add "require" lines to the .lp file
LP:Ad "require" line for Target to the .lp file