Popularity
6.2
Declining
Activity
0.0
Stable
2
5
5
Monthly Downloads: 11
Programming language: Haskell
License: MIT License
Tags:
Math
Formal Methods
SmtLib alternatives and similar packages
Based on the "Formal Methods" category.
Alternatively, view SmtLib alternatives based on common mentions on social networks and blogs.
-
theoremquest
A common library for TheoremQuest, a theorem proving game.
Developer Ecosystem Survey 2022
Take part in the Developer Ecosystem Survey 2022 by JetBrains and get a chance to win a Macbook, a Nvidia graphics card, or other prizes. We’ll create an infographic full of stats, and you’ll get personalized results so you can compare yourself with other developers.
Promo
surveys.jetbrains.com
Do you think we are missing an alternative of SmtLib or a related project?
Popular Comparisons
README
Smtlib
SMTLib2 parsers.
A library with SMTLib2 syntax and parsers for commands and their responses.
How to parse a smtlib2 file:
import Smtlib.Parsers.CommandsParsers
import Smtlib.Syntax.Syntax
import Text.ParserCombinators.Parsec
parseFile :: FilePath -> IO (Either ParseError Source)
parseFile x = parse parseSource "" <$> readFile x