toysolver-0.10.0: src/ToySolver/Data/Polyhedron.hs
-----------------------------------------------------------------------------
-- |
-- Module : ToySolver.Data.Polyhedron
-- Copyright : (c) Masahiro Sakai 2012
-- License : BSD-style
--
-- Maintainer : masahiro.sakai@gmail.com
-- Stability : provisional
-- Portability : portable
--
-- Affine subspaces that are characterized by a set of linear (in)equalities.
--
-----------------------------------------------------------------------------
module ToySolver.Data.Polyhedron
( Polyhedron
, univ
, empty
, intersection
, fromConstraints
, toConstraints
) where
import Data.List (foldl', transpose)
import Data.Ratio
import qualified Data.IntSet as IntSet
import Data.Map (Map)
import qualified Data.Map as Map
import Data.VectorSpace
import Prelude hiding (null)
import Algebra.Lattice
import qualified Data.Interval as Interval
import ToySolver.Data.OrdRel
import qualified ToySolver.Data.LA as LA
import ToySolver.Data.IntVar
type ExprR = LA.Expr Rational
type ExprZ = LA.Expr Integer
type AtomR = LA.Atom Rational
type IntervalR = Interval.Interval Rational
-- | Intersection of half-spaces
data Polyhedron
= Polyhedron (Map ExprZ IntervalR)
| Empty
deriving (Eq)
instance Variables Polyhedron where
vars (Polyhedron m) = IntSet.unions [vars e | e <- Map.keys m]
vars Empty = IntSet.empty
instance Lattice Polyhedron where
Empty \/ b = b
a \/ Empty = a
Polyhedron m1 \/ Polyhedron m2 =
normalize $ Polyhedron (Map.intersectionWith Interval.hull m1 m2)
(/\) = intersection
instance BoundedJoinSemiLattice Polyhedron where
bottom = empty
instance BoundedMeetSemiLattice Polyhedron where
top = univ
normalize :: Polyhedron -> Polyhedron
normalize (Polyhedron m) | any Interval.null (Map.elems m) = Empty
normalize p = p
-- | universe
univ :: Polyhedron
univ = Polyhedron Map.empty
-- | empty space
empty :: Polyhedron
empty = Empty
-- | intersection of
intersection :: Polyhedron -> Polyhedron -> Polyhedron
intersection (Polyhedron m1) (Polyhedron m2) =
normalize $ Polyhedron (Map.unionWith Interval.intersection m1 m2)
intersection _ _ = Empty
-- | Create a set of 'Polyhedron's that are characterized by a given
-- set of linear (in)equalities.
fromConstraints :: [AtomR] -> [Polyhedron]
fromConstraints cs =
map (foldl' intersection univ) $ transpose $ map fromAtom cs
fromAtom :: AtomR -> [Polyhedron]
fromAtom (OrdRel lhs NEq rhs) =
fromAtom (lhs .<. rhs) ++ fromAtom (lhs .>. rhs)
fromAtom (OrdRel lhs op rhs) =
case LA.extract LA.unitVar (lhs ^-^ rhs) of
(c, e1) ->
case toRat e1 of
(lhs1, d) ->
let rhs1 = - c * fromIntegral d
(lhs2,op2,rhs2) =
if p lhs1
then (negateV lhs1, flipOp op, - rhs1)
else (lhs1, op, rhs1)
ival =
case op of
Lt -> Interval.NegInf Interval.<..< Interval.Finite rhs2
Le -> Interval.NegInf Interval.<..<= Interval.Finite rhs2
Ge -> Interval.Finite rhs2 Interval.<=..< Interval.PosInf
Gt -> Interval.Finite rhs2 Interval.<..< Interval.PosInf
Eql -> Interval.singleton rhs2
NEq -> error "should not happen"
in filter (Empty /=) [normalize $ Polyhedron (Map.singleton lhs2 ival)]
-- | Convert the polyhedron to a list of linear (in)equalities.
toConstraints :: Polyhedron -> [AtomR]
toConstraints Empty = [LA.constant 0 .<. LA.constant 0]
toConstraints (Polyhedron m) = do
(e, ival) <- Map.toList m
let e' = LA.mapCoeff fromIntegral e
xs = case Interval.lowerBound' ival of
(Interval.NegInf, _) -> []
(Interval.PosInf, _) -> undefined
(Interval.Finite c, Interval.Closed) -> [LA.constant c .<=. e']
(Interval.Finite c, Interval.Open) -> [LA.constant c .<. e']
ys = case Interval.upperBound' ival of
(Interval.NegInf, _) -> undefined
(Interval.PosInf, _) -> []
(Interval.Finite c, Interval.Closed) -> [e' .<=. LA.constant c]
(Interval.Finite c, Interval.Open) -> [e' .<. LA.constant c]
xs ++ ys
p :: ExprZ -> Bool
p e =
case LA.terms e of
(c,_):_ | c < 0 -> True
_ -> False
-- | (t,c) represents t/c, and c must be >0.
type Rat = (ExprZ, Integer)
toRat :: ExprR -> Rat
toRat e = (LA.mapCoeff f e, d)
where
f :: Rational -> Integer
f x = round (x * fromIntegral d)
d :: Integer
d = foldl' lcm 1 [denominator c | (c,_) <- LA.terms e]