Class EEA31.Result

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

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

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

    Constructors
    Constructor Description
    Result​(int g, int a, int 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 int g
      gcd
    • a

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

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

    • Result

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

    • toString

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