This commit is contained in:
2026-04-24 01:10:40 +03:00
parent eb7ce4e978
commit 24a79c5940
31 changed files with 804 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package function.stubs
import function.base.ILn
class LnStub : ILn {
override fun ln(
x: Double,
eps: Double,
): Double = 1.0
}