From 4d18a5f58279270268b66ee37529208cb95f4e7d Mon Sep 17 00:00:00 2001 From: Iaroslav Postovalov Date: Mon, 20 Jul 2020 11:08:39 +0700 Subject: [PATCH] Fix superinterface of RemainderDivisionOperations --- .../kotlin/scientifik/kmath/operations/OptionalOperations.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmath-core/src/commonMain/kotlin/scientifik/kmath/operations/OptionalOperations.kt b/kmath-core/src/commonMain/kotlin/scientifik/kmath/operations/OptionalOperations.kt index 66e938343..da7c2c73f 100644 --- a/kmath-core/src/commonMain/kotlin/scientifik/kmath/operations/OptionalOperations.kt +++ b/kmath-core/src/commonMain/kotlin/scientifik/kmath/operations/OptionalOperations.kt @@ -83,7 +83,7 @@ interface Norm { fun >, R> norm(arg: T): R = arg.context.norm(arg) -interface RemainderDivisionOperations : Ring { +interface RemainderDivisionOperations : RingOperations { /** * Calculates the remainder of dividing this value by [arg]. */