Skip to content

Commit 5def38a

Browse files
2 parents 23164ce + abe08c2 commit 5def38a

File tree

2 files changed

+53
-23
lines changed

2 files changed

+53
-23
lines changed

src/cdomains/apron/affineEqualityDomain.apron.ml

+14-15
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ struct
2929
m
3030
else (
3131
Array.modifyi (+) ch.dim;
32-
let m' = if not del then let m = copy m in Array.fold_left (fun y x -> reduce_col_with y x; y) m ch.dim else m in
32+
let m' = if not del then let m = copy m in Array.fold_left (fun y x -> reduce_col y x) m ch.dim else m in
3333
remove_zero_rows @@ del_cols m' ch.dim)
3434

3535
let dim_remove ch m ~del = VectorMatrix.timing_wrap "dim remove" (fun del -> dim_remove ch m ~del:del) del
@@ -59,7 +59,7 @@ struct
5959
let open Apron.Texpr1 in
6060
let exception NotLinear in
6161
let zero_vec = Vector.zero_vec @@ Environment.size t.env + 1 in
62-
let neg v = Vector.map_with Mpqf.neg v; v in
62+
let neg v = Vector.map Mpqf.neg v in
6363
let is_const_vec v = Vector.compare_length_with (Vector.filteri (fun i x -> (*Inefficient*)
6464
Vector.compare_length_with v (i + 1) > 0 && x <>: Mpqf.zero) v) 1 = 0
6565
in
@@ -75,13 +75,13 @@ struct
7575
Vector.set_val zero_vec ((Vector.length zero_vec) - 1) (of_union x)
7676
| Var x ->
7777
let zero_vec_cp = Vector.copy zero_vec in
78-
let entry_only v = Vector.set_val_with v (Environment.dim_of_var t.env x) Mpqf.one; v in
78+
let entry_only v = Vector.set_val v (Environment.dim_of_var t.env x) Mpqf.one in
7979
begin match t.d with
8080
| Some m ->
8181
let row = Matrix.find_opt (fun r -> Vector.nth r (Environment.dim_of_var t.env x) =: Mpqf.one) m in
8282
begin match row with
8383
| Some v when is_const_vec v ->
84-
Vector.set_val_with zero_vec_cp ((Vector.length zero_vec) - 1) (Vector.nth v (Vector.length v - 1)); zero_vec_cp
84+
Vector.set_val zero_vec_cp ((Vector.length zero_vec) - 1) (Vector.nth v (Vector.length v - 1))
8585
| _ -> entry_only zero_vec_cp
8686
end
8787
| None -> entry_only zero_vec_cp end
@@ -91,17 +91,17 @@ struct
9191
| Binop (Add, e1, e2, _, _) ->
9292
let v1 = convert_texpr e1 in
9393
let v2 = convert_texpr e2 in
94-
Vector.map2_with (+:) v1 v2; v1
94+
Vector.map2 (+:) v1 v2
9595
| Binop (Sub, e1, e2, _, _) ->
9696
let v1 = convert_texpr e1 in
9797
let v2 = convert_texpr e2 in
98-
Vector.map2_with (+:) v1 (neg @@ v2); v1
98+
Vector.map2 (+:) v1 (neg @@ v2)
9999
| Binop (Mul, e1, e2, _, _) ->
100100
let v1 = convert_texpr e1 in
101101
let v2 = convert_texpr e2 in
102102
begin match to_constant_opt v1, to_constant_opt v2 with
103-
| _, Some c -> Vector.apply_with_c_with ( *:) c v1; v1
104-
| Some c, _ -> Vector.apply_with_c_with ( *:) c v2; v2
103+
| _, Some c -> Vector.apply_with_c ( *:) c v1
104+
| Some c, _ -> Vector.apply_with_c ( *:) c v2
105105
| _, _ -> raise NotLinear
106106
end
107107
| Binop _ -> raise NotLinear
@@ -294,18 +294,17 @@ struct
294294
(a, b, max)
295295
else
296296
(
297-
Vector.rev_with col_a;
298-
Vector.rev_with col_b;
297+
let col_a = Vector.rev col_a in
298+
let col_b = Vector.rev col_b in
299299
let i = Vector.find2i (<>:) col_a col_b in
300300
let (x, y) = Vector.nth col_a i, Vector.nth col_b i in
301301
let r, diff = Vector.length col_a - (i + 1), x -: y in
302302
let a_r, b_r = Matrix.get_row a r, Matrix.get_row b r in
303-
Vector.map2_with (-:) col_a col_b;
304-
Vector.rev_with col_a;
303+
let col_a = Vector.map2 (-:) col_a col_b in
304+
let col_a = Vector.rev col_a in
305305
let multiply_by_t m t =
306-
Matrix.map2i_with (fun i' x c -> if i' <= max then (let beta = c /: diff in
307-
Vector.map2_with (fun u j -> u -: (beta *: j)) x t); x) m col_a;
308-
m
306+
Matrix.map2i (fun i' x c -> if i' <= max then (let beta = c /: diff in Vector.map2 (fun u j -> u -: (beta *: j)) x t) else x) m col_a;
307+
309308
in
310309
Matrix.remove_row (multiply_by_t a a_r) r, Matrix.remove_row (multiply_by_t b b_r) r, (max - 1)
311310
)

src/cdomains/vectorMatrix.ml

+39-8
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ sig
8383

8484
val map_with: (num -> num) -> t -> unit
8585

86+
val map: (num -> num) -> t -> t
87+
8688
val compare_length_with: t -> int -> int
8789

8890
val of_list: num list -> t
@@ -99,6 +101,8 @@ sig
99101

100102
val rev_with: t -> unit
101103

104+
val rev: t -> t
105+
102106
val map2i: (int -> num -> num -> num) -> t -> t -> t
103107

104108
val map2i_with: (int -> num -> num -> num) -> t -> t -> unit
@@ -107,6 +111,8 @@ sig
107111

108112
val mapi_with: (int -> num -> num) -> t -> unit
109113

114+
val mapi: (int -> num -> num) -> t -> t
115+
110116
val find2i: (num -> num -> bool) -> t -> t -> int
111117

112118
val to_array: t -> num array
@@ -180,6 +186,8 @@ sig
180186

181187
val map2_with: (vec -> num -> vec) -> t -> vec -> unit
182188

189+
val map2: (vec -> num -> vec) -> t -> vec -> t
190+
183191
val map2i: (int -> vec-> num -> vec) -> t -> vec -> t
184192

185193
val map2i_with: (int -> vec -> num -> vec) -> t -> vec -> unit
@@ -270,14 +278,26 @@ module ArrayVector: AbstractVector =
270278

271279
let rev_with v = Array.rev_in_place v
272280

281+
let rev v = Array.rev v
282+
273283
let map_with f v = Array.modify f v
274284

285+
let map f v = Array.map f v
286+
275287
let map2_with f v1 v2 = Array.iter2i (fun i x y -> v1.(i) <- f x y) v1 v2
276288

289+
let map2 f v1 v2 =
290+
let copy_v1 = copy v1 in
291+
map2_with f copy_v1 v2; copy_v1
292+
277293
let copy v = Array.copy v
278294

279295
let mapi_with f v = Array.iteri (fun i x -> v.(i) <- f i x) v
280296

297+
let mapi f v =
298+
let copy = copy v in
299+
mapi_with f copy; copy
300+
281301
let of_sparse_list ls col_count =
282302
let vec = Array.make col_count A.zero in
283303
List.iter (fun (idx, value) -> vec.(idx) <- value) ls;
@@ -788,8 +808,8 @@ module SparseMatrix: AbstractMatrix =
788808

789809
let is_empty m =
790810
num_rows m = 0
791-
(*This should be different if the implimentation is sound*)
792-
(*m.column_count = 0*)
811+
(*This should be different if the implimentation is sound*)
812+
(*m.column_count = 0*)
793813

794814
let num_cols m =
795815
m.column_count
@@ -807,14 +827,14 @@ module SparseMatrix: AbstractMatrix =
807827
match cols with
808828
| x::xs ->
809829
if x < idx
810-
then
811-
let (h,t) = list_of_all_before_index idx xs in
812-
(x::h, t)
813-
else ([],x::xs)
830+
then
831+
let (h,t) = list_of_all_before_index idx xs in
832+
(x::h, t)
833+
else ([],x::xs)
814834
| [] -> ([],[])
815835
in
816836
(*This could easily be abstracted into the above functions, but its nice to have
817-
it here for readability and debugging*)
837+
it here for readability and debugging*)
818838
let rec make_empty_entries_for_idxs idxs =
819839
match idxs with
820840
| x::xs -> (x, emptyT)::(make_empty_entries_for_idxs xs)
@@ -872,7 +892,18 @@ module SparseMatrix: AbstractMatrix =
872892
let set_col_with m new_col n = timing_wrap "set_col" (set_col_with m new_col) n
873893

874894
let set_col m new_col n =
875-
failwith "TODO"
895+
let rec set_col_in_row row value =
896+
match row with
897+
| [] -> if value =: A.zero then [] else [(n, value)]
898+
| (col_idx, v)::cs when col_idx > n -> if value =: A.zero then (col_idx, v)::cs else (n, value)::(col_idx, v)::cs
899+
| (col_idx, v)::cs when col_idx = n -> if value =: A.zero then cs else (n, value)::cs
900+
| (col_idx, v)::cs -> (col_idx, v)::(set_col_in_row cs value)
901+
in
902+
let new_entries = List.mapi (fun row_idx row ->
903+
let value = V.nth new_col row_idx in
904+
set_col_in_row row value
905+
) m.entries in
906+
{entries = new_entries; column_count = m.column_count}
876907

877908
let append_matrices m1 m2 =
878909
failwith "TODO"

0 commit comments

Comments
 (0)