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
Right now, a Tableau is the only proof system that is implemented. However, it would be pleasing to make proof systems more general by adding a typeclass. This would clean up the I/O code, too, since there can be a single I/O function for all decision algorithms.
class (ProofSystem ext system, LaTeX proof, Plain proof) => Prover system
proof where
decide :: system -> F.Formula ext -> proof
analyse :: system -> F.Formula ext -> PP.Doc
deserialise :: Y.Value -> system
The text was updated successfully, but these errors were encountered:
Right now, a Tableau is the only proof system that is implemented. However, it would be pleasing to make proof systems more general by adding a typeclass. This would clean up the I/O code, too, since there can be a single I/O function for all decision algorithms.
The text was updated successfully, but these errors were encountered: