1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
------------------------------------------------------------------------------ --- This module defines the data type to represent Boolean formulas --- together with some auxiliary operations. --- --- @author Michael Hanus, Sven Hueser --- @version September 2017 ------------------------------------------------------------------------------ module Dimacs.Types where import List ( maximum ) --- The type of Boolean formulas. --- Not that variables should be numbered from 1. data Boolean = Var Int | Not Boolean | And [Boolean] | Or [Boolean] --- Returns the maximal variable index in a Boolean formula. maxVar :: Boolean -> Int maxVar (Var n) = n maxVar (Not b) = maxVar b maxVar (And bs) = if null bs then 0 else maximum (map maxVar bs) maxVar (Or bs) = if null bs then 0 else maximum (map maxVar bs) |