fermi/f.go

231 lines
6.6 KiB
Go
Raw Normal View History

2024-05-10 18:05:03 +00:00
package main
import (
"bufio"
"fmt"
2024-05-10 18:25:23 +00:00
"math"
2024-05-10 18:05:03 +00:00
"os"
"strconv"
"strings"
)
2024-05-10 18:25:23 +00:00
const NORMAL90CONFIDENCE = 1.6448536269514727
func boundsToLogParams(low float64, high float64) (float64, float64) {
loglow := math.Log(low)
loghigh := math.Log(high)
logmean := (loghigh + loglow) / 2.0
logstd := (loghigh - loglow) / (2.0 * NORMAL90CONFIDENCE)
return logmean, logstd
}
func multiplyLognormals(logmean1 float64, logstd1 float64, logmean2 float64, logstd2 float64) (float64, float64) {
return logmean1 + logmean2, math.Sqrt(logstd1*logstd1 + logstd2*logstd2)
}
func logParamsToBounds(logmean float64, logstd float64) (float64, float64) {
h := logstd * NORMAL90CONFIDENCE
loglow := logmean - h
loghigh := logmean + h
return math.Exp(loglow), math.Exp(loghigh)
}
func combineBounds(old_low, old_high, new_low, new_high float64) (float64, float64) {
logmean_old, logstd_old := boundsToLogParams(old_low, old_high)
logmean_new, logstd_new := boundsToLogParams(new_low, new_high)
logmean_product, logstd_product := multiplyLognormals(logmean_old, logstd_old, logmean_new, logstd_new)
return logParamsToBounds(logmean_product, logstd_product)
2024-05-10 18:07:58 +00:00
}
2024-06-03 06:45:33 +00:00
func prettyPrintDist(low float64, high float64) {
// fmt.Printf("=> %.1f %.1f\n", low, high)
fmt.Printf("=> ")
switch {
case math.Abs(low) >= 1_000_000_000_000:
fmt.Printf("%.1fT", low/1_000_000_000_000)
case math.Abs(low) >= 1_000_000_000:
fmt.Printf("%.1fB", low/1_000_000_000)
case math.Abs(low) >= 1_000_000:
fmt.Printf("%.1fM", low/1_000_000)
case math.Abs(low) >= 1_000:
fmt.Printf("%.1fK", low/1_000)
case math.Abs(low) >= 1_000:
fmt.Printf("%.1fK", low/1_000)
default:
fmt.Printf("%.1f", low)
}
fmt.Printf(" ")
switch {
case math.Abs(high) >= 1_000_000_000_000:
fmt.Printf("%.1fT", high/1_000_000_000_000)
case math.Abs(high) >= 1_000_000_000:
fmt.Printf("%.1fB", high/1_000_000_000)
case math.Abs(high) >= 1_000_000:
fmt.Printf("%.1fM", high/1_000_000)
case math.Abs(high) >= 1_000:
fmt.Printf("%.1fK", high/1_000)
case math.Abs(high) >= 1_000:
fmt.Printf("%.1fK", high/1_000)
default:
fmt.Printf("%.1f", high)
}
fmt.Printf("\n")
// fmt.Printf("=> %.1f %.1f\n", low, high)
}
2024-05-10 18:05:03 +00:00
func main() {
2024-05-10 21:38:20 +00:00
reader := bufio.NewReader(os.Stdin)
2024-05-11 11:22:07 +00:00
var old_low, old_high float64
var input string
var err1, err2 error
2024-05-13 22:26:31 +00:00
InitialForLoop:
2024-05-11 11:22:07 +00:00
for {
input, _ = reader.ReadString('\n')
input = strings.TrimSpace(input)
words := strings.Split(input, " ")
2024-05-13 22:26:31 +00:00
switch len(words) {
case 1:
single_float, err1 := strconv.ParseFloat(words[0], 64)
if err1 != nil {
fmt.Println("Trying to initialize with a scalar, but scalar is not a float")
continue InitialForLoop
}
old_low = single_float
old_high = single_float
case 2:
old_low, err1 = strconv.ParseFloat(words[0], 64)
old_high, err2 = strconv.ParseFloat(words[1], 64)
if err1 != nil || err2 != nil {
fmt.Println("Trying to initialize with a distribution, but distribution is not specified as two floats")
continue InitialForLoop
}
default:
2024-05-11 11:22:07 +00:00
fmt.Println("Please enter two floats separated by a space, like: 1 10")
2024-05-13 22:26:31 +00:00
continue InitialForLoop
2024-05-11 11:22:07 +00:00
}
if err1 != nil || err2 != nil {
fmt.Println("Please enter two floats separated by a space, like: 1 10")
continue
}
break
2024-05-10 18:07:36 +00:00
}
2024-06-03 06:45:33 +00:00
prettyPrintDist(old_low, old_high)
2024-05-10 18:05:03 +00:00
2024-05-11 10:08:03 +00:00
error_msg_cont := "Valid inputs: 2 || * 2 || / 2 || 2 20 || * 2 20 || / 2 20 || i || e"
2024-05-10 21:38:20 +00:00
EventForLoop:
2024-05-10 18:05:03 +00:00
for {
input, _ = reader.ReadString('\n')
2024-05-10 18:07:58 +00:00
if strings.TrimSpace(input) == "" {
2024-05-10 21:38:20 +00:00
continue EventForLoop
2024-05-10 18:05:03 +00:00
}
2024-05-11 10:08:24 +00:00
words := strings.Split(strings.TrimSpace(input), " ")
2024-05-10 18:05:03 +00:00
2024-05-11 10:08:03 +00:00
var new_low, new_high float64
2024-05-11 10:08:24 +00:00
switch words[0] {
2024-05-11 10:08:03 +00:00
case "*":
2024-05-11 10:08:24 +00:00
switch len(words) {
2024-05-11 10:08:03 +00:00
case 1:
fmt.Println("Can't multiply by nothing")
fmt.Println(error_msg_cont)
2024-05-10 21:47:34 +00:00
continue EventForLoop
2024-05-11 10:08:03 +00:00
case 2:
2024-05-11 10:08:24 +00:00
single_float, err1 := strconv.ParseFloat(words[1], 64)
2024-05-11 10:08:03 +00:00
if err1 != nil {
fmt.Println("Trying to multiply by a scalar, but scalar is not a float")
fmt.Println(error_msg_cont)
continue EventForLoop
}
2024-05-11 09:27:05 +00:00
new_low = single_float
new_high = single_float
2024-05-11 10:08:03 +00:00
case 3:
2024-05-11 10:08:24 +00:00
new_low, err1 = strconv.ParseFloat(words[1], 64)
new_high, err2 = strconv.ParseFloat(words[2], 64)
2024-05-11 10:08:03 +00:00
if err1 != nil || err2 != nil {
fmt.Println(error_msg_cont)
fmt.Println("Trying to multiply by a distribution, but distribution is not specified as two floats")
continue EventForLoop
}
2024-05-11 09:27:05 +00:00
default:
2024-05-11 10:08:03 +00:00
fmt.Println("Trying to multiply by something, but this something is neither a scalar nor a distribution")
2024-05-11 09:27:05 +00:00
fmt.Println(error_msg_cont)
continue EventForLoop
2024-05-10 21:38:20 +00:00
}
2024-05-11 10:08:03 +00:00
case "/":
2024-05-11 10:08:24 +00:00
switch len(words) {
2024-05-11 10:08:03 +00:00
case 1:
fmt.Println("Can't divide by nothing")
2024-05-10 21:38:20 +00:00
fmt.Println(error_msg_cont)
continue EventForLoop
2024-05-11 10:08:03 +00:00
case 2:
2024-05-11 11:22:07 +00:00
single_float, err1 := strconv.ParseFloat(words[1], 64)
2024-05-11 09:27:05 +00:00
if err1 != nil {
2024-05-11 10:08:03 +00:00
fmt.Println("Trying to divide by a scalar, but scalar is not a float")
fmt.Println(error_msg_cont)
continue EventForLoop
}
new_low = 1.0 / single_float
new_high = 1.0 / single_float
case 3:
2024-05-11 10:08:24 +00:00
new_low, err1 = strconv.ParseFloat(words[1], 64)
new_high, err2 = strconv.ParseFloat(words[2], 64)
2024-05-11 10:08:03 +00:00
if err1 != nil || err2 != nil {
fmt.Println("Trying to divide by a distribution, but distribution is not specified as two floats")
2024-05-10 21:38:20 +00:00
fmt.Println(error_msg_cont)
continue EventForLoop
2024-05-10 19:50:55 +00:00
}
2024-05-12 17:10:25 +00:00
tmp := new_low
new_low = 1.0 / new_high
new_high = 1.0 / tmp
2024-05-11 10:08:03 +00:00
default:
fmt.Println("Trying to divide by something, but this something is neither a scalar nor a distribution")
2024-05-11 09:27:05 +00:00
}
2024-05-11 10:08:03 +00:00
default:
2024-05-11 10:08:24 +00:00
switch len(words) {
2024-05-11 10:08:03 +00:00
case 0:
2024-05-11 09:27:05 +00:00
continue EventForLoop
2024-05-11 10:08:03 +00:00
case 1:
2024-05-11 10:08:24 +00:00
switch words[0] {
2024-05-11 10:08:03 +00:00
case "i":
fmt.Printf("=> %.1f %.1f\n", old_low, old_high)
logmean_old, logstd_old := boundsToLogParams(old_low, old_high)
fmt.Printf("=> Lognormal, with logmean: %.1f, logstd: %.1f\n", logmean_old, logstd_old)
continue EventForLoop
case "e":
break EventForLoop
default:
2024-05-11 10:08:24 +00:00
single_float, err1 := strconv.ParseFloat(words[0], 64)
2024-05-11 10:08:03 +00:00
if err1 != nil {
2024-05-11 11:24:45 +00:00
fmt.Println("Unrecognized command")
2024-05-11 10:08:03 +00:00
fmt.Println(error_msg_cont)
continue EventForLoop
}
new_low = single_float
new_high = single_float
}
case 2:
2024-05-11 10:08:24 +00:00
new_low, err1 = strconv.ParseFloat(words[0], 64)
new_high, err2 = strconv.ParseFloat(words[1], 64)
2024-05-11 10:08:03 +00:00
if err1 != nil || err2 != nil {
fmt.Println("Trying to multiply by a distribution, but distribution is not specified as two floats")
fmt.Println(error_msg_cont)
continue EventForLoop
}
2024-05-10 19:50:55 +00:00
default:
2024-05-11 10:08:03 +00:00
fmt.Println("No operation takes more than 3 words")
2024-05-10 21:38:20 +00:00
fmt.Println(error_msg_cont)
continue EventForLoop
2024-05-10 19:50:55 +00:00
}
}
2024-05-11 09:27:05 +00:00
2024-05-10 18:25:23 +00:00
old_low, old_high = combineBounds(old_low, old_high, new_low, new_high)
2024-06-03 06:45:33 +00:00
prettyPrintDist(old_low, old_high)
2024-05-10 18:05:03 +00:00
}
}