package function.stubs import function.base.ISin class SinStub : ISin { override fun sin( x: Double, eps: Double, ): Double = 1.0 }