Popularity
6.0
Declining
Activity
0.0
Stable
2
5
5
Monthly Downloads: 7
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.
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
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