satchmo-1.8.0: SAT encoding monad

Satchmo.Binary.Op.Fixed

Description

operations with fixed bit width. still they are non-overflowing: if overflow occurs, the constraints are not satisfiable. the bit width of the result of binary operations is the max of the bit width of the inputs.

Synopsis

Documentation

restricted :: MonadSAT m => Int -> Number -> m NumberSource

give only lower k bits, upper bits must be zero, (else unsatisfiable)

add :: MonadSAT m => Number -> Number -> m NumberSource

result bit width is max of argument bit widths. if overflow occurs, then formula is unsatisfiable.

times :: MonadSAT m => Number -> Number -> m NumberSource

result bit width is at most max of argument bit widths. if overflow occurs, then formula is unsatisfiable.

number :: MonadSAT m => Int -> m NumberSource

declare a number variable (bit width)

constant :: MonadSAT m => Integer -> m NumberSource

declare a number constant