Skip to content
Snippets Groups Projects
Commit 445a43f3 authored by Loïc Correnson's avatar Loïc Correnson Committed by François Bobot
Browse files

[wp] fix unecessary int-power

parent 036d849b
No related branches found
No related tags found
No related merge requests found
......@@ -48,8 +48,3 @@ axiom Pow_one_y : (forall y:real. (pow(1.0, y) = 1.0))
axiom Pow_x_two : (forall x:real. ((0.0 < x) -> (pow(x, 2.0) = sqr(x))))
axiom Pow_half : (forall x:real. ((0.0 < x) -> (pow(x, 0.5) = sqrt(x))))
axiom pow_from_int :
(forall x:int. forall y:int. ((0 < x) -> ((0 <= y) -> (pow(from_int(x),
from_int(y)) = from_int(power(x, y))))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment