Module Ltl_logic


module Ltl_logic: sig .. end
Given a list of termes, if a positive call or return is present, then all negative ones are obvious and removed

Given a condition, this function does some logical simplifications.


val condToDNF : Promelaast.condition -> Promelaast.condition list list
val removeTerm : Promelaast.condition ->
Promelaast.condition list -> Promelaast.condition list
val positiveCallOrRet : Promelaast.condition list -> Promelaast.condition list
Given a list of termes, if a positive call or return is present, then all negative ones are obvious and removed
val ltl_exps : (string, Cil_types.exp * String.t * Cil_types.predicate) Hashtbl.t
Pervasives.ref
val setLtl_expressions : (string, Cil_types.exp * String.t * Cil_types.predicate) Hashtbl.t -> unit
val get_str_exp_from_tmpident : string -> String.t
val expAreEqual : string -> string -> bool
val simplify : Promelaast.condition list -> Promelaast.condition list
Given a list of termes, if a positive call or return is present, then all negative ones are obvious and removed
val termsAreEqual : Promelaast.condition -> Promelaast.condition -> bool
val clausesAreSubSetEq : Promelaast.condition list -> Promelaast.condition list -> bool
true iff clause1 <: clause2
val clausesAreEqual : Promelaast.condition list -> Promelaast.condition list -> bool
true iff clause1 <: clause2 and clause2 <: clause1
val removeClause : Promelaast.condition list list ->
Promelaast.condition list -> Promelaast.condition list list
return the clauses list named lclauses without any clause c such as cl <: c
val negativeClause : Promelaast.condition list -> Promelaast.condition list
val simplifyClauses : Promelaast.condition list list -> Promelaast.condition list list
val dnfToCond : Promelaast.condition list list -> Promelaast.condition
val simplifyCond : Promelaast.condition -> Promelaast.condition
Given a condition, this function does some logical simplifications.

Given a condition, this function does some logical simplifications.

val simplifyTrans : Promelaast.trans list -> Promelaast.trans list
Given a transition, this function returns the same transition with simplifyCond done on its cross condition

Given a transition list, this function returns the same transition list with simplifyCond done on each cross condition. Uncrossable transition are removed.