fix distributional division

This commit is contained in:
NunoSempere 2024-05-12 18:10:25 +01:00
parent bc40428f8a
commit 69b3681697
2 changed files with 4 additions and 0 deletions

View File

@ -94,6 +94,7 @@ Conceptually clearer to have all the multiplications first and then all the divi
- [x] Allow comments?
- [x] Use a sed filter?
- [x] Add show more info version
- [x] Scalar multiplication and division
- [ ] Program into a small device, like a calculator?
- [ ] Think of some way of calling bc
- [ ] Think how to integrate with squiggle.c to draw samples

3
f.go
View File

@ -128,6 +128,9 @@ EventForLoop:
fmt.Println(error_msg_cont)
continue EventForLoop
}
tmp := new_low
new_low = 1.0 / new_high
new_high = 1.0 / tmp
default:
fmt.Println("Trying to divide by something, but this something is neither a scalar nor a distribution")
}