Fix opposite_eq method.
Simplify method in Simplify trait. Fix distributive law. Response for the simplify endpoint. HTTP client. camelCase and SCREAMING_SNAKE_CASE for struct and enum
This commit is contained in:
29
http/simplify.http
Normal file
29
http/simplify.http
Normal file
@ -0,0 +1,29 @@
|
||||
### GET Atomic Expression
|
||||
GET {{url}}/simplify/A
|
||||
|
||||
### GET And Expression
|
||||
< {%
|
||||
import {expression} from './common.js';
|
||||
|
||||
expression("A & B")
|
||||
%}
|
||||
GET {{url}}/simplify/{{expression}}
|
||||
|
||||
### GET Or Expression
|
||||
< {%
|
||||
import {expression} from "./common";
|
||||
|
||||
expression("A | B")
|
||||
%}
|
||||
GET {{url}}/simplify/{{expression}}
|
||||
|
||||
### GET Not Expression
|
||||
GET {{url}}/simplify/!A
|
||||
|
||||
### GET Implication Expression
|
||||
< {%
|
||||
import {expression} from "./common";
|
||||
|
||||
expression("A => B")
|
||||
%}
|
||||
GET {{url}}/simplify/{{expression}}
|
Reference in New Issue
Block a user