Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
affeldt-aist committed Apr 24, 2024
1 parent 495a956 commit 606a032
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 15 deletions.
2 changes: 0 additions & 2 deletions _CoqProject
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,3 @@ theories/smooth_trajectories.v

-arg -w -arg -notation-overridden
-arg -w -arg -ambiguous-paths
theories/smooth_trajectories.v
theories/generic_trajectories.v
11 changes: 0 additions & 11 deletions html/Makefile

This file was deleted.

2 changes: 1 addition & 1 deletion theories/extraction_command.v
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From trajectories Require Import smooth_trajectories.
From trajectories Require Import generic_trajectories smooth_trajectories.
Require Import QArith.

Extraction "smooth_trajectories" smooth_point_to_point example_bottom example_top
Expand Down
2 changes: 1 addition & 1 deletion theories/no_crossing.v
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Definition have_crossing (e1 e2 : edge) : bool :=
else
(* The two edges are parallel. They may still touch. *)
if negb (Qeq_bool
(area3 (left_pt e1) (left_pt e2) (right_pt e2)) 0) then
(area3 _ Qplus Qminus Qmult (left_pt e1) (left_pt e2) (right_pt e2)) 0) then
true
else
(Qlt_bool (p_x (left_pt e2)) (p_x (left_pt e1)) &&
Expand Down

0 comments on commit 606a032

Please sign in to comment.