Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
19
Task/Arithmetic-Complex/Pop11/arithmetic-complex.pop11
Normal file
19
Task/Arithmetic-Complex/Pop11/arithmetic-complex.pop11
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
lvars a = 1.0 +: 1.0, b = 2.0 +: 5.0 ;
|
||||
a+b =>
|
||||
a*b =>
|
||||
1/a =>
|
||||
a-b =>
|
||||
a-a =>
|
||||
a/b =>
|
||||
a/a =>
|
||||
|
||||
;;; The same, but using exact values
|
||||
1 +: 1 -> a;
|
||||
2 +: 5 -> b;
|
||||
a+b =>
|
||||
a*b =>
|
||||
1/a =>
|
||||
a-b =>
|
||||
a-a =>
|
||||
a/b =>
|
||||
a/a =>
|
||||
Loading…
Add table
Add a link
Reference in a new issue