https://github.com/0dminnimda/symbolic_calculator
This is a part of MCST enrollment process
https://github.com/0dminnimda/symbolic_calculator
Last synced: 3 months ago
JSON representation
This is a part of MCST enrollment process
- Host: GitHub
- URL: https://github.com/0dminnimda/symbolic_calculator
- Owner: 0dminnimda
- License: mit
- Created: 2024-05-03T22:03:32.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-24T13:30:42.000Z (about 1 year ago)
- Last Synced: 2024-06-24T15:08:49.871Z (about 1 year ago)
- Language: C
- Homepage:
- Size: 23.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mcst_enrollment
## Build
```console
make
```## Run tests
```console
make tests
```or also
```console
make tests_small
```## Example
1.
```
*
x + x*y + y
x - y
```->
```
x*x + x*x*y - x*y*y - y*y
```2.
```
-
a + 3*y - b
-1*x + 3*y - 5*z
```->
```
a - b + x + 5*z
```3.
```
=
-1*x + y*z
z * y - x
```->
```
equal
```4.
```
=
x + y
y - x
```->
```
not equal
```