-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(ocaml): refactoring ocaml formula
- Loading branch information
1 parent
7ae3b3f
commit ccdc49f
Showing
502 changed files
with
4,065 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.dockerignore | ||
Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM ghcr.io/sambyeol/ocaml-devcontainer:4.14.1-debian-root | ||
|
||
USER root | ||
RUN mkdir -p /workspace | ||
WORKDIR /workspace | ||
COPY . /workspace |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"language": "ocaml", | ||
"id": "formula-1", | ||
|
||
"buggyPath": "buggy", | ||
"referencePath": null, | ||
|
||
"buildCommand": "ocamlc src.ml", | ||
"testCommand": null, | ||
|
||
"categories": ["functional"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.dockerignore | ||
Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM ghcr.io/sambyeol/ocaml-devcontainer:4.14.1-debian-root | ||
|
||
USER root | ||
RUN mkdir -p /workspace | ||
WORKDIR /workspace | ||
COPY . /workspace |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
Imply (Not False,Not False) => true; | ||
Imply (Not False,AndAlso (True,False)) => false; | ||
Imply (False, False) => true; | ||
Equal (Minus (Num 5,Num 2),Num 3) => true; | ||
Not (Not (Not (Not (Imply (True, True))))) => true; | ||
AndAlso (OrElse(True, False), Not (Imply (True, False))) => true; | ||
Not (Imply (AndAlso (False, True), OrElse (False, False))) => false; | ||
Equal (Plus (Minus (Num 4, Num 5), Minus (Num 1, Num (-1))), Plus (Minus (Num 3, Num (-5)), Plus (Num 4, Num 5))) => false; | ||
OrElse (Equal (Minus (Num 3, Num 4), Plus (Num 3, Num 4)), AndAlso (Not (True), True)) => false; | ||
AndAlso (AndAlso(True, True), AndAlso (Not (AndAlso (True, False)), Not (OrElse (False, False)))) => true; | ||
OrElse (True, True) => true; | ||
OrElse (True, Not True) => true; | ||
Equal (Num 1, Plus (Num 0, Num 1)) => true; | ||
AndAlso ((True, Not (True))) => false; | ||
OrElse ((False, Not (False))) => true; | ||
Imply (False, True) => true; | ||
Not (Not (Not (True))) => false; | ||
Not (AndAlso ((True, Not (False)))) => false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"language": "ocaml", | ||
"id": "formula-1", | ||
|
||
"buggyPath": "buggy", | ||
"referencePath": null, | ||
|
||
"buildCommand": "ocamlc src.ml", | ||
"testCommand": null, | ||
|
||
"categories": ["functional"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.dockerignore | ||
Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM ghcr.io/sambyeol/ocaml-devcontainer:4.14.1-debian-root | ||
|
||
USER root | ||
RUN mkdir -p /workspace | ||
WORKDIR /workspace | ||
COPY . /workspace |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
Imply (Not False,Not False) => true; | ||
Imply (Not False,AndAlso (True,False)) => false; | ||
Imply (False, False) => true; | ||
Equal (Minus (Num 5,Num 2),Num 3) => true; | ||
Not (Not (Not (Not (Imply (True, True))))) => true; | ||
AndAlso (OrElse(True, False), Not (Imply (True, False))) => true; | ||
Not (Imply (AndAlso (False, True), OrElse (False, False))) => false; | ||
Equal (Plus (Minus (Num 4, Num 5), Minus (Num 1, Num (-1))), Plus (Minus (Num 3, Num (-5)), Plus (Num 4, Num 5))) => false; | ||
OrElse (Equal (Minus (Num 3, Num 4), Plus (Num 3, Num 4)), AndAlso (Not (True), True)) => false; | ||
AndAlso (AndAlso(True, True), AndAlso (Not (AndAlso (True, False)), Not (OrElse (False, False)))) => true; | ||
OrElse (True, True) => true; | ||
OrElse (True, Not True) => true; | ||
Equal (Num 1, Plus (Num 0, Num 1)) => true; | ||
AndAlso ((True, Not (True))) => false; | ||
OrElse ((False, Not (False))) => true; | ||
Imply (False, True) => true; | ||
Not (Not (Not (True))) => false; | ||
Not (AndAlso ((True, Not (False)))) => false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"language": "ocaml", | ||
"id": "formula-1", | ||
|
||
"buggyPath": "buggy", | ||
"referencePath": null, | ||
|
||
"buildCommand": "ocamlc src.ml", | ||
"testCommand": null, | ||
|
||
"categories": ["functional"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.dockerignore | ||
Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM ghcr.io/sambyeol/ocaml-devcontainer:4.14.1-debian-root | ||
|
||
USER root | ||
RUN mkdir -p /workspace | ||
WORKDIR /workspace | ||
COPY . /workspace |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
Imply (Not False,Not False) => true; | ||
Imply (Not False,AndAlso (True,False)) => false; | ||
Imply (False, False) => true; | ||
Equal (Minus (Num 5,Num 2),Num 3) => true; | ||
Not (Not (Not (Not (Imply (True, True))))) => true; | ||
AndAlso (OrElse(True, False), Not (Imply (True, False))) => true; | ||
Not (Imply (AndAlso (False, True), OrElse (False, False))) => false; | ||
Equal (Plus (Minus (Num 4, Num 5), Minus (Num 1, Num (-1))), Plus (Minus (Num 3, Num (-5)), Plus (Num 4, Num 5))) => false; | ||
OrElse (Equal (Minus (Num 3, Num 4), Plus (Num 3, Num 4)), AndAlso (Not (True), True)) => false; | ||
AndAlso (AndAlso(True, True), AndAlso (Not (AndAlso (True, False)), Not (OrElse (False, False)))) => true; | ||
OrElse (True, True) => true; | ||
OrElse (True, Not True) => true; | ||
Equal (Num 1, Plus (Num 0, Num 1)) => true; | ||
AndAlso ((True, Not (True))) => false; | ||
OrElse ((False, Not (False))) => true; | ||
Imply (False, True) => true; | ||
Not (Not (Not (True))) => false; | ||
Not (AndAlso ((True, Not (False)))) => false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"language": "ocaml", | ||
"id": "formula-1", | ||
|
||
"buggyPath": "buggy", | ||
"referencePath": null, | ||
|
||
"buildCommand": "ocamlc src.ml", | ||
"testCommand": null, | ||
|
||
"categories": ["functional"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.dockerignore | ||
Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM ghcr.io/sambyeol/ocaml-devcontainer:4.14.1-debian-root | ||
|
||
USER root | ||
RUN mkdir -p /workspace | ||
WORKDIR /workspace | ||
COPY . /workspace |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
Imply (Not False,Not False) => true; | ||
Imply (Not False,AndAlso (True,False)) => false; | ||
Imply (False, False) => true; | ||
Equal (Minus (Num 5,Num 2),Num 3) => true; | ||
Not (Not (Not (Not (Imply (True, True))))) => true; | ||
AndAlso (OrElse(True, False), Not (Imply (True, False))) => true; | ||
Not (Imply (AndAlso (False, True), OrElse (False, False))) => false; | ||
Equal (Plus (Minus (Num 4, Num 5), Minus (Num 1, Num (-1))), Plus (Minus (Num 3, Num (-5)), Plus (Num 4, Num 5))) => false; | ||
OrElse (Equal (Minus (Num 3, Num 4), Plus (Num 3, Num 4)), AndAlso (Not (True), True)) => false; | ||
AndAlso (AndAlso(True, True), AndAlso (Not (AndAlso (True, False)), Not (OrElse (False, False)))) => true; | ||
OrElse (True, True) => true; | ||
OrElse (True, Not True) => true; | ||
Equal (Num 1, Plus (Num 0, Num 1)) => true; | ||
AndAlso ((True, Not (True))) => false; | ||
OrElse ((False, Not (False))) => true; | ||
Imply (False, True) => true; | ||
Not (Not (Not (True))) => false; | ||
Not (AndAlso ((True, Not (False)))) => false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"language": "ocaml", | ||
"id": "formula-1", | ||
|
||
"buggyPath": "buggy", | ||
"referencePath": null, | ||
|
||
"buildCommand": "ocamlc src.ml", | ||
"testCommand": null, | ||
|
||
"categories": ["functional"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.dockerignore | ||
Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM ghcr.io/sambyeol/ocaml-devcontainer:4.14.1-debian-root | ||
|
||
USER root | ||
RUN mkdir -p /workspace | ||
WORKDIR /workspace | ||
COPY . /workspace |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
Imply (Not False,Not False) => true; | ||
Imply (Not False,AndAlso (True,False)) => false; | ||
Imply (False, False) => true; | ||
Equal (Minus (Num 5,Num 2),Num 3) => true; | ||
Not (Not (Not (Not (Imply (True, True))))) => true; | ||
AndAlso (OrElse(True, False), Not (Imply (True, False))) => true; | ||
Not (Imply (AndAlso (False, True), OrElse (False, False))) => false; | ||
Equal (Plus (Minus (Num 4, Num 5), Minus (Num 1, Num (-1))), Plus (Minus (Num 3, Num (-5)), Plus (Num 4, Num 5))) => false; | ||
OrElse (Equal (Minus (Num 3, Num 4), Plus (Num 3, Num 4)), AndAlso (Not (True), True)) => false; | ||
AndAlso (AndAlso(True, True), AndAlso (Not (AndAlso (True, False)), Not (OrElse (False, False)))) => true; | ||
OrElse (True, True) => true; | ||
OrElse (True, Not True) => true; | ||
Equal (Num 1, Plus (Num 0, Num 1)) => true; | ||
AndAlso ((True, Not (True))) => false; | ||
OrElse ((False, Not (False))) => true; | ||
Imply (False, True) => true; | ||
Not (Not (Not (True))) => false; | ||
Not (AndAlso ((True, Not (False)))) => false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"language": "ocaml", | ||
"id": "formula-1", | ||
|
||
"buggyPath": "buggy", | ||
"referencePath": null, | ||
|
||
"buildCommand": "ocamlc src.ml", | ||
"testCommand": null, | ||
|
||
"categories": ["functional"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.dockerignore | ||
Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM ghcr.io/sambyeol/ocaml-devcontainer:4.14.1-debian-root | ||
|
||
USER root | ||
RUN mkdir -p /workspace | ||
WORKDIR /workspace | ||
COPY . /workspace |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
Imply (Not False,Not False) => true; | ||
Imply (Not False,AndAlso (True,False)) => false; | ||
Imply (False, False) => true; | ||
Equal (Minus (Num 5,Num 2),Num 3) => true; | ||
Not (Not (Not (Not (Imply (True, True))))) => true; | ||
AndAlso (OrElse(True, False), Not (Imply (True, False))) => true; | ||
Not (Imply (AndAlso (False, True), OrElse (False, False))) => false; | ||
Equal (Plus (Minus (Num 4, Num 5), Minus (Num 1, Num (-1))), Plus (Minus (Num 3, Num (-5)), Plus (Num 4, Num 5))) => false; | ||
OrElse (Equal (Minus (Num 3, Num 4), Plus (Num 3, Num 4)), AndAlso (Not (True), True)) => false; | ||
AndAlso (AndAlso(True, True), AndAlso (Not (AndAlso (True, False)), Not (OrElse (False, False)))) => true; | ||
OrElse (True, True) => true; | ||
OrElse (True, Not True) => true; | ||
Equal (Num 1, Plus (Num 0, Num 1)) => true; | ||
AndAlso ((True, Not (True))) => false; | ||
OrElse ((False, Not (False))) => true; | ||
Imply (False, True) => true; | ||
Not (Not (Not (True))) => false; | ||
Not (AndAlso ((True, Not (False)))) => false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"language": "ocaml", | ||
"id": "formula-1", | ||
|
||
"buggyPath": "buggy", | ||
"referencePath": null, | ||
|
||
"buildCommand": "ocamlc src.ml", | ||
"testCommand": null, | ||
|
||
"categories": ["functional"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.dockerignore | ||
Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM ghcr.io/sambyeol/ocaml-devcontainer:4.14.1-debian-root | ||
|
||
USER root | ||
RUN mkdir -p /workspace | ||
WORKDIR /workspace | ||
COPY . /workspace |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
Imply (Not False,Not False) => true; | ||
Imply (Not False,AndAlso (True,False)) => false; | ||
Imply (False, False) => true; | ||
Equal (Minus (Num 5,Num 2),Num 3) => true; | ||
Not (Not (Not (Not (Imply (True, True))))) => true; | ||
AndAlso (OrElse(True, False), Not (Imply (True, False))) => true; | ||
Not (Imply (AndAlso (False, True), OrElse (False, False))) => false; | ||
Equal (Plus (Minus (Num 4, Num 5), Minus (Num 1, Num (-1))), Plus (Minus (Num 3, Num (-5)), Plus (Num 4, Num 5))) => false; | ||
OrElse (Equal (Minus (Num 3, Num 4), Plus (Num 3, Num 4)), AndAlso (Not (True), True)) => false; | ||
AndAlso (AndAlso(True, True), AndAlso (Not (AndAlso (True, False)), Not (OrElse (False, False)))) => true; | ||
OrElse (True, True) => true; | ||
OrElse (True, Not True) => true; | ||
Equal (Num 1, Plus (Num 0, Num 1)) => true; | ||
AndAlso ((True, Not (True))) => false; | ||
OrElse ((False, Not (False))) => true; | ||
Imply (False, True) => true; | ||
Not (Not (Not (True))) => false; | ||
Not (AndAlso ((True, Not (False)))) => false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"language": "ocaml", | ||
"id": "formula-1", | ||
|
||
"buggyPath": "buggy", | ||
"referencePath": null, | ||
|
||
"buildCommand": "ocamlc src.ml", | ||
"testCommand": null, | ||
|
||
"categories": ["functional"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.dockerignore | ||
Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM ghcr.io/sambyeol/ocaml-devcontainer:4.14.1-debian-root | ||
|
||
USER root | ||
RUN mkdir -p /workspace | ||
WORKDIR /workspace | ||
COPY . /workspace |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
Imply (Not False,Not False) => true; | ||
Imply (Not False,AndAlso (True,False)) => false; | ||
Imply (False, False) => true; | ||
Equal (Minus (Num 5,Num 2),Num 3) => true; | ||
Not (Not (Not (Not (Imply (True, True))))) => true; | ||
AndAlso (OrElse(True, False), Not (Imply (True, False))) => true; | ||
Not (Imply (AndAlso (False, True), OrElse (False, False))) => false; | ||
Equal (Plus (Minus (Num 4, Num 5), Minus (Num 1, Num (-1))), Plus (Minus (Num 3, Num (-5)), Plus (Num 4, Num 5))) => false; | ||
OrElse (Equal (Minus (Num 3, Num 4), Plus (Num 3, Num 4)), AndAlso (Not (True), True)) => false; | ||
AndAlso (AndAlso(True, True), AndAlso (Not (AndAlso (True, False)), Not (OrElse (False, False)))) => true; | ||
OrElse (True, True) => true; | ||
OrElse (True, Not True) => true; | ||
Equal (Num 1, Plus (Num 0, Num 1)) => true; | ||
AndAlso ((True, Not (True))) => false; | ||
OrElse ((False, Not (False))) => true; | ||
Imply (False, True) => true; | ||
Not (Not (Not (True))) => false; | ||
Not (AndAlso ((True, Not (False)))) => false; | ||
} |
Oops, something went wrong.