Class EEA63.Result

java.lang.Object
de.tilman_neumann.jml.gcd.EEA63.Result
Enclosing class:
EEA63

public static class EEA63.Result
extends java.lang.Object
  • Field Summary

    Fields
    Modifier and Type Field Description
    long a
    if g==1 then a = (1/x) mod y
    long b
    if g==1 then b = (1/y) mod x
    long g
    gcd
  • Constructor Summary

    Constructors
    Constructor Description
    Result​(long g, long a, long b)  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • g

      public long g
      gcd
    • a

      public long a
      if g==1 then a = (1/x) mod y
    • b

      public long b
      if g==1 then b = (1/y) mod x
  • Constructor Details

    • Result

      public Result​(long g, long a, long b)
  • Method Details

    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object