(************************************************************************) (* * The Rocq Prover / The Rocq Development Team *) (* v * Copyright INRIA, CNRS and contributors *) (* <O___,, * (see version control and CREDITS file for authors & dates) *) (* \VV/ **************************************************************) (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) (* * (see LICENSE file for the text of the license) *) (************************************************************************)
open NumCompat open Mutils
(** Variables are simply (positive) integers. *) type var = int
(** The type of vectors or equivalently linear expressions. The current implementation is using association lists. A list [(0,c),(x1,ai),...,(xn,an)] represents the linear expression c + a1.xn + ... an.xn where ai are rational constants and xi are variables.
Note that the variable 0 has a special meaning and represent a constant. Moreover, the representation is spare and variables with a zero coefficient are not represented.
*) type t
type vector = t
(** {1 Generic functions} *)
(** [hash] [equal] and [compare] so that Vect.t can be used as
keys for Set Map and Hashtbl *)
val hash : t -> int val equal : t -> t -> bool val compare : t -> t -> int
(** {1 Basic accessors and utility functions} *)
(** [pp_gen pp_var o v] prints the representation of the vector [v] over the channel [o] *) val pp_gen : (out_channel -> var -> unit) -> out_channel -> t -> unit
(** [pp o v] prints the representation of the vector [v] over the channel [o] *) val pp : out_channel -> t -> unit
(** [pp_smt o v] prints the representation of the vector [v] over the channel [o] using SMTLIB conventions *) val pp_smt : out_channel -> t -> unit
(** [variables v] returns the set of variables with non-zero coefficients *) val variables : t -> ISet.t
(** [get_cst v] returns c i.e. the coefficient of the variable zero *) val get_cst : t -> Q.t
(** [decomp_cst v] returns the pair (c,a1.x1+...+an.xn) *) val decomp_cst : t -> Q.t * t
val decomp_fst : t -> (var * Q.t) * t
(** [cst c] returns the vector v=c+0.x1+...+0.xn *) val cst : Q.t -> t
(** [is_constant v] holds if [v] is a constant vector i.e. v=c+0.x1+...+0.xn
*) val is_constant : t -> bool
(** [null] is the empty vector i.e. 0+0.x1+...+0.xn *) val null : t
(** [is_null v] returns whether [v] is the [null] vector i.e [equal v null] *) val is_null : t -> bool
(** [get xi v] returns the coefficient ai of the variable [xi].
[get] is also defined for the variable 0 *) val get : var -> t -> Q.t
(** [set xi ai' v] returns the vector c+a1.x1+...ai'.xi+...+an.xn
i.e. the coefficient of the variable xi is set to ai' *) valset : var -> Q.t -> t -> t
(** [update xi f v] returns c+a1.x1+...+f(ai).xi+...+an.xn *) val update : var -> (Q.t -> Q.t) -> t -> t
(** [fresh v] return the fresh variable with index 1+ max (variables v) *) val fresh : t -> int
(** [choose v] decomposes a vector [v] depending on whether it is [null] or not. @return None if v is [null] @return Some(x,n,r) where v = r + n.x x is the smallest variable with non-zero coefficient n <> 0.
*) val choose : t -> (var * Q.t * t) option
(** [from_list l] returns the vector c+a1.x1...an.xn from the list of coefficient [l=c;a1;...;an] *) val from_list : Q.t list -> t
(** [decr_var i v] decrements the variables of the vector [v] by the amount [i]. Beware, it is only defined if all the variables of v are greater than i
*) val decr_var : int -> t -> t
(** [incr_var i v] increments the variables of the vector [v] by the amount [i].
*) val incr_var : int -> t -> t
(** [gcd v] returns gcd(num(c),num(a1),...,num(an)) where num extracts
the numerator of a rational value. *) val gcd : t -> Z.t
(** [normalise v] returns a vector with only integer coefficients *) val normalise : t -> t
(** {1 Linear arithmetics} *)
(** [add v1 v2] is vector addition. @param v1 is of the form c +a1.x1 +...+an.xn @param v2 is of the form c'+a1'.x1 +...+an'.xn @return c1+c1'+ (a1+a1').x1 + ... + (an+an').xn
*) val add : t -> t -> t
(** [mul a v] is vector multiplication of vector [v] by a scalar [a].
@return a.v = a.c+a.a1.x1+...+a.an.xn *) val mul : Q.t -> t -> t
(** [mul_add c1 v1 c2 v2] returns the linear combination c1.v1+c2.v2 *) val mul_add : Q.t -> t -> Q.t -> t -> t
(** [subst x v v'] replaces x by v in vector v' *) val subst : int -> t -> t -> t
(** [div c1 v1] returns the mutiplication by the inverse of c1 i.e (1/c1).v1 *) val div : Q.t -> t -> t
(** [uminus v]
@return -v the opposite vector of v i.e. (-1).v *) val uminus : t -> t
(** {1 Iterators} *)
(** [fold f acc v] returns f (f (f acc 0 c ) x1 a1 ) ... xn an *) val fold : ('acc -> var -> Q.t -> 'acc) -> 'acc -> t -> 'acc
(** [find f v] returns the first [f xi ai] such that [f xi ai <> None].
If no such xi ai exists, it returns None *) valfind : (var -> Q.t -> 'c option) -> t -> 'c option
(** [for_all p v] returns /\_{i>=0} (f xi ai) *) val for_all : (var -> Q.t -> bool) -> t -> bool
(** [exists2 p v v'] returns Some(xi,ai,ai') if p(xi,ai,ai') holds and ai,ai' <> 0.
It returns None if no such pair of coefficient exists. *) val exists2 : (Q.t -> Q.t -> bool) -> t -> t -> (var * Q.t * Q.t) option
(** [dotproduct v1 v2] is the dot product of v1 and v2. *) val dotproduct : t -> t -> Q.t
module Bound : sig (** represents a0 + ai.xi *) type t = {cst : Q.t; var : var; coeff : Q.t}
val of_vect : vector -> t option val to_vect : t -> vector end
Messung V0.5
¤ Dauer der Verarbeitung: 0.0 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.