-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Develop a common proof format and export proofs #458
base: master
Are you sure you want to change the base?
Develop a common proof format and export proofs #458
Conversation
…getProof() in BasicProverEnvironment.java
…aviour of getProof to return unsupported operation.
…p_a_common_proof_format_and_export_proofs
…ts from SMTInterpol to a ResolutionProofDAG. Not working. Class SmtInterpolProofNode should help transform from the internal SMTInterpol proof representation to ResolutionProofDAG. Not working. Added some tests to evaluate proofs given back by SMTInterpol and the ResolutionProofDAG objects that should be returned.
Option requireProofs must be set to true through Configuration. Added a class for testing the proof generation of Z3. SMTInterpol: some documentation.
Various changes to the ProofDAG interface and all classes inheriting it.
Various changes to the ProofDAG interface and all classes inheriting it.
…o multiple resolution steps.
…n now be converted to resolution proof rules.
- Renamed some classes for clarity - Z3: Made proof traversal non-recursive for efficiency.Added tests for proof-related functionality - CVC5: Implemented necessary classes for proof production - Improved documentation - Added test for retrieving proofs in ProverEnvironmentTest.java
…entation for when no formula is available.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some general things that i noticed (some may be mentioned in change requests, but apply generally):
-
Tests should be generalized and moved into the test package if they are not using native API. You can still have tests for a single solver in the test package by using the
assume
API and only allowing a single one. The name of the solver should be mentioned in the test name then. -
Please add documentation to the new classes and interfaces. Especially mention which ones are used internally and which ones are public/usable by users and the purpose/background of the classes/interfaces.
-
You can have classes within classes, which is especially helpful to structure smaller components, e.g. nodes of a graph, within the context you are using them in. That makes the code much easier to read and structures it better.
-
Please avoid pushing print-outs or commented out code. If you are working on a feature thats not yet working, thats fine. Document it and don't use the component. Please add some documentation to the commented out code. Print-outs should never be pushed. Try using the logger or exceptions. In tests please use assertion instead of printouts. (It is OK to expect the current static output of a solver. If the test fails in the future, we devs are notified about changes that we might need to consider.)
-
Native API tests that just test that proofs work are good and can be added for all solvers supporting proofs.
* | ||
* @author Gabriel Carpio | ||
*/ | ||
public class ResProofRule { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could add sources (publication(s), reference sites etc.), the solvers that support this natively, as well as the usage/logic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added some documentation and will wait for further information on the format form Mathsat5 as it seems to be very similar.
public class ResolutionProofDag extends AbstractProofDag { | ||
|
||
/* | ||
public ResolutionProofDAG() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this class being worked on? If yes, in what form?
Please try to not push commented out code if possible. Also, please document this if it is supposed to be used in the future.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made some adjustments to this.
try { | ||
throw new UnsupportedOperationException("Proof generation isn't enabled."); | ||
} catch (UnsupportedOperationException e) { | ||
System.out.println(e.getMessage()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can check if the prover is closed first, making sure that the prover is available.
It does not make much sense to throw an exception and catch it immediately again ;D
And please don't push print-outs. Try using the logger, exceptions if you want to notify the user.
Also, "Proof generation is not available for the chosen solver" is a better message for the exception type.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To check the state I will move this method to AbstractProver
. There, there also a method checkGenerateProofs
that mimics the behavior of the other check methods, I understand this should throw an Exception already. Aside from this, there is still the issue that, for example, for Z3 proof generation must be set as an Option
in the configuration, so the solver should retrieve this information from the context in this case.
import org.sosy_lab.java_smt.api.proofs.visitors.ProofVisitor; | ||
|
||
public interface ProofDag { | ||
void addNode(ProofNode node); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The traversal of the proofs should be public API. Is this interface exposed to users?
Also, this is missing some comments and formatting.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is supposed to be exposed to user, at least the get
methods. However, this is still in the works and right now traversal should be only possible through the methods in ProofNode
.
import org.sosy_lab.java_smt.ResProofRule.ResAxiom; | ||
|
||
public class ProofFactory { | ||
public static ProofNode createSourceNode(ResAxiom rule, Formula formula) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Building a proof should not be exposed to the user. Is ProofFactory
available for users?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm currently trying to utilize this class to eliminate classes like Mathsat5ProofProcessor
and Z3ToResoluteProofConverter
. However, I'm facing an issue: ideally, the user shouldn't have direct access to these methods and should instead retrieve proofs via getProof
from a ProverEnvironment
instance. The challenge is that making the class non-public complicates its use within the solvers' packages.
|
||
|
||
//String proofStr = proof.toString(); | ||
System.out.println(invokeGetProofMode(smtinterpol).toString()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use assertions instead of printouts.
ShutdownManager shutdown = ShutdownManager.create(); | ||
|
||
// Create new context with SMTInterpol | ||
context = Z3SolverContext.create( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not use the SolverContextFactory
?
} | ||
|
||
private static Solver createEnvironment() throws CVC5ApiException { | ||
Solver newSolver = new Solver(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This tests nothing currently. Also, native proof tests are good, but should be part of the CVC5 native test-class.
@@ -79,6 +85,7 @@ public void createEnvironment() { | |||
long cfg = msat_create_config(); | |||
|
|||
msat_set_option_checked(cfg, "model_generation", "true"); | |||
msat_set_option_checked(cfg, "proof_generation", "true"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why enable proofs for all tests and then build a new, dedicated solver environment for the proof test?
*/ | ||
|
||
@SuppressWarnings({"unchecked", "rawtypes", "unused", "static-access","ModifiedButNotUsed"}) | ||
public class Z3ToResoluteProofConverter { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This class tackles a hard problem and should be documented with the used ideas and possible sources behind it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added further documentation
@leventeBajczi could you spare a look at this PR and maybe give us some feedback on the current proof interface? |
…r by the name of the rule
Right now, the Z3ToResoluteProofConverter class is still a work in progress. The goal is to transform Z3 proofs into a format similar to SMTInterpol’s (RESOLUTE), following the same proof rules. Currently, the main functionality is to make Z3 proofs accessible through JavaSMT by simplifying Z3’s proof structures and implementing the ProofNode interface, which should capture all relevant proof information. I haven’t run any performance tests yet. From what I know, enabling proof generation in a solver itself is usually quite costly. Hopefully, retrieving proofs through JavaSMT won’t introduce significant additional overhead. I’ve also added more documentation in the code to clarify some of these points. |
…esolutionProofDag`
…ion if proof generation is not enabled. The default method is now in `AbstractProver`instead of `BasicProverEnvironment`
…olProofNodeCreator`
Fixed `Map`s in `ProofRuleResgistry` being empty
…en creating `Z3ProofNode`
…gain in interface `BasicProverEnvironment`
…gain in interface `BasicProverEnvironment`
…evaluates to `unsat`
…evaluates to `unsat`.
…roofs # Conflicts: # src/org/sosy_lab/java_smt/solvers/cvc5/CVC5AbstractProver.java
…f node for processing the proof terms. Renamed `getResAxiomRuleByName` to `getFromName` in `ResProofRule`
Objective
This PR aims to expose proofs produced by supported solvers through the API, primarily via a
getProof()
method.Key Changes
ProofNode
,ProofDag
, andProofRule
as the main components for handling proofs.Proof Format Conversion
To unify proof representation, this PR investigates converting solver-specific proofs into a common format, with RESOLUTE (used by SMTInterpol) as a candidate.
Z3ToResoluteProofConverter
provides an example of this transformation.Task List
Implement
getProof()
for Z3.Introduce
ProofNode
,ProofDag
, andProofRule
.Implement
getProof()
for other solvers.Test
getProof
more robustly.Next Steps
ProofDag
interface.