Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add knowledge about floor/ceil bounds #718

Merged
merged 1 commit into from
Jul 7, 2023

Conversation

bclement-ocp
Copy link
Collaborator

In the RIA prelude, we have axioms with semantic triggers to propagate bounds on reals to bounds on integers using real_of_int (real_of_int_to_int_1 and real_of_int_to_int_2).

These state respectively that:

  • If real_of_int(i) ≤ y holds in the reals, then i ≤ int_floor(y) holds in the integers.

  • If y ≤ real_of_int(i) holds in the reals, then int_ceil(y) ≤ i holds in the integers.

This patch adds the corresponding propagations from bounds on integers to bounds on reals. More precisely it adds the propagations:

  • If int_floor(x) ≤ i holds in the integers, x < real_of_int(i + 1) holds in the reals

  • If i ≤ int_floor(x) holds in the integers, real_of_int(i) ≤ x holds in the reals

  • If int_ceil(x) ≤ i holds in the integers, x ≤ real_of_int(i) holds in the reals

  • If i ≤ int_ceil(x) holds in the integers, real_of_int(i - 1) < x holds in the reals

(Note that the test has "unknown" expected but it should be SAT -- this is because the ria prelude is disabled currently)

@bclement-ocp
Copy link
Collaborator Author

Build failure on macOS is spurious and not related to the PR.

@@ -56,6 +56,34 @@ theory Real_of_Int extends RIA =
{i <= real_of_int(x)}.
k <= x

(* floor(x) ≤ i iff x < i + 1 *)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess you meant floor(x) <= i implies x < i+1 instead of floor(x) <= i iff x < i+1.
Besides, I don't understand why you need to use the semantic trigger not_theory_constant here?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

floor(x) <= i iff x < i + 1 is correct, unless I am mistaken? Even though we only implement the implication.

not_theory_constant is here to avoid adding useless axioms, e.g. 3 < 4 if we know that floor(3.5) <= 3

In the RIA prelude, we have axioms with semantic triggers to propagate
bounds on reals to bounds on integers using `real_of_int`
(`real_of_int_to_int_1` and `real_of_int_to_int_2`).

These state respectively that:

 - If `real_of_int(i) ≤ y` holds in the reals, then `i ≤ int_floor(y)`
   holds in the integers.

 - If `y ≤ real_of_int(i)` holds in the reals, then `int_ceil(y) ≤ i`
   holds in the integers.

This patch adds the corresponding propagations from bounds on integers
to bounds on reals. More precisely it adds the propagations:

 - If `int_floor(x) ≤ i` holds in the integers, `x < real_of_int(i + 1)`
   holds in the reals

 - If `i ≤ int_floor(x)` holds in the integers, `real_of_int(i) ≤ x`
   holds in the reals

 - If `int_ceil(x) ≤ i` holds in the integers, `x ≤ real_of_int(i)`
   holds in the reals

 - If `i ≤ int_ceil(x)` holds in the integers, `real_of_int(i - 1) < x`
   holds in the reals

(Note that the test has "unknown" expected but it should be SAT -- this
is because the ria prelude is disabled currently)
@bclement-ocp
Copy link
Collaborator Author

Note: waiting on #720 to make sure the test pass :)

@bclement-ocp bclement-ocp merged commit 5c0b9f0 into OCamlPro:next Jul 7, 2023
9 of 10 checks passed
@bclement-ocp bclement-ocp deleted the floor_ceil branch July 10, 2023 14:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants