Popularity
5.9
Declining
Activity
0.0
Stable
2
5
6

Monthly Downloads: 6
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.

Do you think we are missing an alternative of SmtLib or a related project?

Add another 'Formal Methods' Package

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