-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoperators.go
69 lines (61 loc) · 1.48 KB
/
operators.go
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package zeno
import (
"fmt"
"math"
)
var (
ErrorZeroDivision = fmt.Errorf("can't divide by 0")
)
var (
mappedOperators = map[byte]func(x, y float64) (float64, error){
'+': func(x, y float64) (float64, error) {
return x + y, nil
},
'-': func(x, y float64) (float64, error) {
return x - y, nil
},
'*': func(x, y float64) (float64, error) {
return x * y, nil
},
'/': func(x, y float64) (float64, error) {
if y == 0 {
return 0, ErrorZeroDivision
}
return x / y, nil
},
'^': func(x, y float64) (float64, error) {
return math.Pow(x, y), nil
},
}
// custom latex for some operators
latexOperators = map[byte]func(x, y *Operation) string{
'*': func(x, y *Operation) string {
return x.LaTeX() + "\\cdot" + y.LaTeX()
},
'/': func(x, y *Operation) string {
return fmt.Sprintf("\\frac{%s}{%s}", x.LaTeX(), y.LaTeX())
},
}
)
// SimpleOperator represents basic operators such as addition, subtraction...
type SimpleOperator struct {
Type byte
}
func (o *SimpleOperator) Operate(x, y *Operation) (float64, error) {
left, err := x.Operate()
if err != nil {
return 0, err
}
right, err := y.Operate()
if err != nil {
return 0, err
}
return mappedOperators[o.Type](left, right)
}
func (o *SimpleOperator) LaTeX(x, y *Operation) string {
if specialLatex, isSpecial := latexOperators[o.Type]; isSpecial {
// operator uses a differen LaTeX expression
return specialLatex(x, y)
}
return fmt.Sprintf("%s%c%s", x.LaTeX(), o.Type, y.LaTeX())
}