package calc import "galaxy/calc" // Ceil3 wraps `calc.Ceil3` (`pkg/calc/number.go`): round up to three // decimal places. The calculator formats every displayed number through // this bridge so the UI and the canonical Go implementation agree. func Ceil3(num float64) float64 { return calc.Ceil3(num) }