satchmo-2.9.9.4: src/Satchmo/Binary/Op/Fixed.hs
{-# language MultiParamTypeClasses #-}
-- | 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.
module Satchmo.Binary.Op.Fixed
( restricted
, add, times, dot_product, dot_product'
, module Satchmo.Binary.Data
, module Satchmo.Binary.Op.Common
, restrictedTimes
)
where
import Prelude hiding ( and, or, not, min, max )
import qualified Prelude
import Control.Monad (foldM)
import qualified Satchmo.Code as C
import Satchmo.Boolean
import Satchmo.Binary.Data
import Satchmo.Binary.Op.Common
import qualified Satchmo.Binary.Op.Times as T
import qualified Satchmo.Binary.Op.Flexible as Flexible
import Satchmo.Counting
import Control.Monad ( forM, when )
import Data.Map ( Map )
import qualified Data.Map as M
-- | give only lower k bits, upper bits must be zero,
-- (else unsatisfiable)
restricted :: (MonadSAT m) => Int -> Number -> m Number
restricted w a = do
let ( low, high ) = splitAt w $ bits a
sequence $ do x <- high ; return $ assertOr [ not x ]
return $ make low
-- | result bit width is max of argument bit widths.
-- if overflow occurs, then formula is unsatisfiable.
add :: (MonadSAT m) => Number -> Number -> m Number
add a b = do
false <- Satchmo.Boolean.constant False
let w = Prelude.max ( width a ) ( width b )
zs <- add_with_carry w false ( bits a ) ( bits b )
return $ make zs
add_with_carry :: (MonadSAT m) => Int -> Boolean -> Booleans -> Booleans -> m Booleans
add_with_carry w c xxs yys = case ( xxs, yys ) of
_ | w <= 0 -> do
sequence_ $ do p <- c : xxs ++ yys ; return $ assertOr [ not p ]
return []
( [] , [] ) -> return [ c ]
( [], y : ys) -> do
(r,d) <- half_adder c y
rest <- add_with_carry (w-1) d [] ys
return $ r : rest
( x : xs, [] ) -> add_with_carry w c yys xxs
(x : xs, y:ys) -> do
(r,d) <- full_adder c x y
rest <- add_with_carry (w-1) d xs ys
return $ r : rest
-- | result bit width is at most max of argument bit widths.
-- if overflow occurs, then formula is unsatisfiable.
times :: (MonadSAT m) => Number -> Number -> m Number
times a b = do
let w = Prelude.max ( width a ) ( width b )
T.times (Just w) a b
dot_product :: (MonadSAT m)
=> Int -> [ Number ] -> [ Number ] -> m Number
dot_product w xs ys = do
T.dot_product (Just w) xs ys
dot_product' xs ys = do
let l = length . bits
w = Prelude.maximum $ 0 : map l ( xs ++ ys )
dot_product w xs ys
-- Ignores overflows
restrictedAdd :: (MonadSAT m) => Number -> Number -> m Number
restrictedAdd a b = do
zero <- Satchmo.Boolean.constant False
(result, _) <- Flexible.add_with_carry zero (bits a) (bits b)
return $ make result
-- Ignores overflows
restrictedShift :: (MonadSAT m) => Number -> m Number
restrictedShift a = do
zero <- Satchmo.Boolean.constant False
return $ make $ zero : (take (width a - 1) $ bits a)
-- Ignores overflows
restrictedTimes :: (MonadSAT m) => Number -> Number -> m Number
restrictedTimes as bs = do
result <- foldM (\(as',sum) b -> do
summand <- Flexible.times1 b as'
sum' <- sum `restrictedAdd` summand
nextAs' <- restrictedShift as'
return (nextAs', sum')
) (as, make []) $ bits bs
return $ snd result