Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Foundation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MitM
Foundation
Commits
c3678ba0
Commit
c3678ba0
authored
2 years ago
by
Dennis Müller
Browse files
Options
Downloads
Patches
Plain Diff
rules for sqrt/pow
parent
4c71d01b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
scala/info/kwarc/mmt/mitm/rules/Literals.scala
+1
-0
1 addition, 0 deletions
scala/info/kwarc/mmt/mitm/rules/Literals.scala
scala/info/kwarc/mmt/mitm/rules/Symbols.scala
+1
-0
1 addition, 0 deletions
scala/info/kwarc/mmt/mitm/rules/Symbols.scala
source/math.mmt
+4
-1
4 additions, 1 deletion
source/math.mmt
with
6 additions
and
1 deletion
scala/info/kwarc/mmt/mitm/rules/Literals.scala
+
1
−
0
View file @
c3678ba0
...
...
@@ -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
This diff is collapsed.
Click to expand it.
scala/info/kwarc/mmt/mitm/rules/Symbols.scala
+
1
−
0
View file @
c3678ba0
...
...
@@ -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"
...
...
This diff is collapsed.
Click to expand it.
source/math.mmt
+
4
−
1
View file @
c3678ba0
...
...
@@ -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 ❙
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment