diff --git a/main b/main deleted file mode 100755 index 7f7389a..0000000 Binary files a/main and /dev/null differ diff --git a/main.go b/main.go index a841d2d..adfeff9 100644 --- a/main.go +++ b/main.go @@ -12,7 +12,6 @@ import ( 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 @@ -43,9 +42,8 @@ func combineBounds(old_low, old_high, new_low, new_high float64) (float64, float func main() { reader := bufio.NewReader(os.Stdin) - var old_low, old_high float64 // Variables to store the intermediate results + var old_low, old_high float64 - // fmt.Println("Enter two floats separated by a space:") input, _ := reader.ReadString('\n') input = strings.TrimSpace(input) diff --git a/f.sh b/more/f.sh similarity index 100% rename from f.sh rename to more/f.sh diff --git a/log.f b/more/log.f similarity index 100% rename from log.f rename to more/log.f diff --git a/model.f b/more/model.f similarity index 100% rename from model.f rename to more/model.f