Skip to content

Commit 5710048

Browse files
committed
Basic functionality
0 parents  commit 5710048

File tree

6 files changed

+1160
-0
lines changed

6 files changed

+1160
-0
lines changed

.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.exe~
4+
*.dll
5+
*.so
6+
*.dylib
7+
8+
# Test binary, built with `go test -c`
9+
*.test
10+
11+
# Output of the go coverage tool, specifically when used with LiteIDE
12+
*.out
13+
14+
# Dependency directories (remove the comment below to include it)
15+
# vendor/

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 GoLoop
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+140
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
[![Go Report Card](https://goreportcard.com/badge/github.com/goloop/trit)](https://goreportcard.com/report/github.com/goloop/trit) [![License](https://img.shields.io/badge/license-MIT-brightgreen)](https://github.com/goloop/trit/blob/master/LICENSE) [![License](https://img.shields.io/badge/godoc-YES-green)](https://godoc.org/github.com/goloop/trit) [![Stay with Ukraine](https://img.shields.io/static/v1?label=Stay%20with&message=Ukraine%20♥&color=ffD700&labelColor=0057B8&style=flat)](https://u24.gov.ua/)
2+
3+
4+
# trit
5+
6+
It's useful package for working with trinary logic in Go!
7+
8+
Package defines the data type and basic operations of a ternary logic system, often referred to as trinary or ternary logic. It supports three states, namely False, Nil, and True, with False represented by negative number (-1), Nil represented by zero (0), and True represented by positive number (1).
9+
10+
The logic operations NOT, AND, OR, XOR, NAND, NOR, and XNOR are implemented as methods of the Trit type, with each method applying the logic operation on the Trit receiver and a Trit argument to produce a Trit result according to the trinary truth table.
11+
12+
There are also some useful methods provided for checking the state of a Trit value (IsFalse, IsNil, IsTrue), setting a Trit value from an integer (Set), returning the underlying int8 value of a Trit (Int), and returning a string representation of a Trit value (String).
13+
14+
Overall, this package can be beneficial in scenarios where a "maybe" or "unknown" state is needed, such as in database systems and logic circuits, and in the construction of trinary computers and balanced ternary systems.
15+
16+
## Quick start
17+
18+
Install package:
19+
20+
```shell
21+
$ go get github.com/goloop/trit
22+
```
23+
24+
Some examples of using the package:
25+
26+
```go
27+
package main
28+
29+
import (
30+
"fmt"
31+
32+
"github.com/goloop/trit"
33+
)
34+
35+
func main() {
36+
t1 := trit.True
37+
t2 := trit.False
38+
39+
// IsTrue
40+
fmt.Println(t1.IsTrue()) // Output: True
41+
42+
// IsFalse
43+
fmt.Println(t2.IsFalse()) // Output: True
44+
45+
// Def
46+
t3 := trit.Nil
47+
t3.Def(trit.True)
48+
fmt.Println(t3) // Output: True
49+
50+
// DefTrue
51+
t4 := trit.Nil
52+
t4.DefTrue()
53+
fmt.Println(t4) // Output: True
54+
55+
// And
56+
result := t1.And(t2)
57+
fmt.Println(result) // Output: False
58+
59+
// Or
60+
result = t1.Or(t2)
61+
fmt.Println(result) // Output: True
62+
63+
// Xor
64+
result = t1.Xor(t2)
65+
fmt.Println(result) // Output: True
66+
67+
// Nand
68+
result = t1.Nand(t2)
69+
fmt.Println(result) // Output: True
70+
71+
// Nor
72+
result = t1.Nor(t2)
73+
fmt.Println(result) // Output: False
74+
75+
// Xnor
76+
result = t1.Xnor(t2)
77+
fmt.Println(result) // Output: False
78+
79+
// Int
80+
fmt.Println(t1.Int()) // Output: 1
81+
82+
// String
83+
fmt.Println(t1.String()) // Output: True
84+
}
85+
86+
```
87+
88+
## Truth Tables
89+
90+
The truth table for the three-valued logic system is shown here. It's a mathematical table used in logic—specifically in connection with three-valued algebra, three-valued functions, and propositional calculus—which sets out the functional values of logical expressions on each of their functional arguments, that is, for each combination of values taken by their logical variables.
91+
92+
```shell
93+
NOT AND OR XOR
94+
A | B A | B | C A | B | C A | B | C
95+
------- ----------- ----------- -----------
96+
T | F T | T | T T | T | T T | T | F
97+
N | N T | N | N T | N | T T | N | T
98+
F | T T | F | F T | F | T T | F | T
99+
N | T | N N | T | T N | T | T
100+
N | N | N N | N | N N | N | F
101+
N | F | F N | F | F N | F | F
102+
F | T | F F | T | T F | T | T
103+
F | N | F F | N | N F | N | T
104+
F | F | F F | F | F F | F | F
105+
106+
NAND NOR XNOR
107+
A | B | C A | B | C A | B | C
108+
----------- ----------- -----------
109+
T | T | F T | T | F T | T | T
110+
T | N | T T | N | F T | N | F
111+
T | F | T T | F | F T | F | F
112+
N | T | T N | T | F N | T | F
113+
N | N | T N | N | T N | N | T
114+
N | F | T N | F | F N | F | T
115+
F | T | T F | T | F F | T | F
116+
F | N | T F | N | T F | N | T
117+
F | F | T F | F | T F | F | T
118+
```
119+
120+
## Explanation
121+
122+
Here's an explanation of some key parts of this package:
123+
124+
- The Trit type is defined as an int8. This is a signed 8-bit integer, which means it can hold values between -128 and 127.
125+
126+
- The Trit type is used to represent a "trinary digit," which can take on three states: False, Nil, and True.
127+
128+
- Package defineds various methods on the Trit type that allow you to perform operations on trinary digits, including determining if a trinary digit represents False, Nil, or True, setting the value of a trinary digit based on an integer, normalizing a trinary digit, converting a trinary digit to an integer or a string, and performing logical NOT, AND, OR, XOR, NAND, NOR, and XNOR operations on trinary digits.
129+
130+
- The Trit type is defined as an alias for int8, and it can take one of three constants as its value: False, Nil, or True. False corresponds to any negative number (including -1), Nil corresponds to 0, and True corresponds to any positive number (including 1).
131+
132+
- There are four methods (Def, DefTrue, DefFalse, and Clean) that check if the value of a Trit is Nil and change its value based on the method called. For instance, DefTrue will set the Trit to True if its current value is Nil.
133+
134+
- There are three methods (IsFalse, IsNil, and IsTrue) that check the state of a Trit and return a boolean indicating if the Trit is in the corresponding state.
135+
136+
- These methods perform various operations like assigning a value to a Trit (Set), returning the normalized value of a Trit (Val), normalizing the Trit in place (Norm), getting the integer representation of the Trit (Int), and getting the string representation of the Trit (String).
137+
138+
- There are several methods for performing logic operations on Trit values including Not, And, Or, Xor, Nand, and Nor. These methods implement trinary logic versions of their respective boolean logic operations.
139+
140+
- The logic operation methods follow truth tables for ternary logic which are defined in the package comment section.

go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/goloop/trit
2+
3+
go 1.20

0 commit comments

Comments
 (0)