Skip to content
Snippets Groups Projects
Commit c3678ba0 authored by Dennis Müller's avatar Dennis Müller
Browse files

rules for sqrt/pow

parent 4c71d01b
No related branches found
No related tags found
No related merge requests found
......@@ -125,4 +125,5 @@ object IntMinus extends Unary(RealLiterals,Math.intminus,i => 0 - i.asInstanceOf
StandardDouble =>: StandardDouble
) */
object RealSqrt extends Unary(RealLiterals,Math.sqrt,i => scala.math.sqrt(i.asInstanceOf[Double]))
object RealPow extends Binary(RealLiterals,Math.realpow,(i,j) => scala.math.pow(i.asInstanceOf[Double],j.asInstanceOf[Double]))
object RealInv extends Unary(RealLiterals,Math.realinv, i => 1.0 / i.asInstanceOf[Double])
\ No newline at end of file
......@@ -48,6 +48,7 @@ object Math {
val realminus = realliterals ? "minus_real_lit"
val intminus = intliterals ? "minus_int_lit"
val sqrt = realliterals ? "sqrt"
val realpow = realliterals ? "real_pow"
val realinv = realliterals ? "inv_real_lit"
val string = strings ? "string"
......
......@@ -214,13 +214,16 @@ theory RealLiterals : ur:?LF =
// square_is_pos : {r : ℝ} ⊦ leq_real_lit 0 (times_real_lit r r) ❙
sqrt : ℝ ⟶ ℝ ❙
rule rules?RealSqrt ❙
real_pow : ℝ ⟶ ℝ ⟶ ℝ ❙
rule rules?RealPow ❙
theory Literals : ur:?LF =
include ?RealLiterals ❙
include ?NatLiterals ❙
include ?IntLiterals ❙
include ?Subtyping ❙
//include ?Subtyping ❙
ints_are_real : int_lit <* real_lit ❙
......
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