package intelligence

import "math"

// Small forwarders keep the disk_forecast file's imports tidy.
func _exp(x float64) float64  { return math.Exp(x) }
func _sqrt(x float64) float64 { return math.Sqrt(x) }
