package libabsolute

  1. Overview
  2. Docs

This module defines the constraint language, and some basic operations over it

type cmpop =
  1. | EQ
  2. | LEQ
  3. | GEQ
  4. | NEQ
  5. | GT
  6. | LT

arithmetic comparison operators

type comparison = Expr.t * cmpop * Expr.t

boolean comparison : e1 <> e2

type 'a boolean =
  1. | Cmp of 'a
  2. | And of 'a boolean * 'a boolean
  3. | Or of 'a boolean * 'a boolean
  4. | Not of 'a boolean

boolean expressions

type for constraints

Constructors

Comparisons

val leq : Expr.t -> Expr.t -> t

e1 <= e2

val lt : Expr.t -> Expr.t -> t

e1 < e2

val geq : Expr.t -> Expr.t -> t

e1 >= e2

val gt : Expr.t -> Expr.t -> t

e1 > e2

val eq : Expr.t -> Expr.t -> t

e1 = e2

val neq : Expr.t -> Expr.t -> t

e1 <> e2

Boolean formulae

val and_ : t -> t -> t

b1 && b2

val or_ : t -> t -> t

b1 || b2

val imply : t -> t -> t

b1 => b2

val not_ : t -> t

not b

Utilities

val assign : string -> Q.t -> t

constraint for variable assignment by a constant

val inside : Expr.t -> Expr.t -> Expr.t -> t

constraint for 'e \in [low;high]'

val outside : Expr.t -> Expr.t -> Expr.t -> t

constraint for 'e \notin [low;high]'

val inside_cst : string -> Q.t -> Q.t -> t

same as inside but with string and rationals instead of expressions'

val outside_cst : string -> Q.t -> Q.t -> t

same as outside but with string and rationals instead of expressions'

val of_instance : Instance.t -> t

conversion of a point p to a conjunctive constraint whose only solution is the point p.

  • raises [Invalid_arg]

    if the instance is empty

val convex_hull : Instance.t list -> t

Builds the conjuntive constraint defined by the linear system corresponding to the convex hull of the given set of points. The list of instance must not be empty and all the instances should be defined over the same set of keys, otherwise the behaviour in undefined.

Operations

val inv_cmp : cmpop -> cmpop

cmp operator inversion

val neg_cmp : cmpop -> cmpop

comparison operator negation

val cmp_to_fun : cmpop -> Q.t -> Q.t -> bool

returns the rational function corresponding to the cmp operator

val nullify_rhs : comparison -> comparison

nullify c computes a comparison equivalent to c, with its right-hand-side being 0

val neg : t -> t

constraint negation

val remove_not : t -> t

rewrites a constraint into an equivalent constraint without the logical operator 'Not'

val collect_vars : t -> int Tools.VarMap.t

Returns all the variables appearing in a constraint as a map where to each variable is associated the (integer) number of occurences

val replace : t -> string -> Expr.t -> t

replace constr var expr builds a new constraint identical to constr where all the occurences of the variable var are replaced by the expression expr

val fix_var : t -> string -> Q.t -> t

fix_var constr var cst builds a new constraint identical to constr where all the occurences of the variable var are replaced by the constant cst

val eval : t -> Instance.t -> bool

Evaluates the constraint a the given point.

  • raises [Invalid_arg]

    if a division by zero occurs or if an exponentitation by a non integer exposant is made.

Printing

val pp_cmpop : Stdlib.Format.formatter -> cmpop -> unit

comparison operator printer

val pp_comparison : Stdlib.Format.formatter -> comparison -> unit

comparison printer

val print : Stdlib.Format.formatter -> t -> unit

printer

val to_string : t -> string

Conversion to a string