UNPKG
fregejs
Version:
latest (0.4.0)
0.4.0
0.3.0
0.2.3
0.2.1
0.2.0
0.1.0
A propositional logic library written in Typescript
github.com/etec-sa
etec-sa/frege
fregejs
/
src
/
types
/
operations
/
propositional-variable.ts
31 lines
(30 loc)
•
305 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/** * Represents a
set
of propositional variables. */
export
type
PropositionalVariable = |
'A'
|
'B'
|
'C'
|
'D'
|
'E'
|
'F'
|
'G'
|
'H'
|
'I'
|
'J'
|
'K'
|
'L'
|
'M'
|
'N'
|
'O'
|
'P'
|
'Q'
|
'R'
|
'S'
|
'T'
|
'U'
|
'V'
|
'W'
|
'X'
|
'Y'
|
'Z'
;