Draft implementation of RemainderDivision algebra #119

Closed
CommanderTvis wants to merge 10 commits from rem-and-div into dev
Showing only changes of commit 4d18a5f582 - Show all commits

View File

@ -83,7 +83,7 @@ interface Norm<in T : Any, out R> {
fun <T : MathElement<out Norm<T, R>>, R> norm(arg: T): R = arg.context.norm(arg) fun <T : MathElement<out Norm<T, R>>, R> norm(arg: T): R = arg.context.norm(arg)
interface RemainderDivisionOperations<T> : Ring<T> { interface RemainderDivisionOperations<T> : RingOperations<T> {
/** /**
* Calculates the remainder of dividing this value by [arg]. * Calculates the remainder of dividing this value by [arg].
*/ */