Interface Solvable

    • Method Summary

      Modifier and Type Method Description
      void finish()
      Should be implemented to finish the solving procedure.
      void prepare()
      Should be implemented to prepare the solving procedure.
      java.lang.String solve()
      Should be implemented to solve a certain problem.
    • Method Detail

      • prepare

        void prepare()
        Should be implemented to prepare the solving procedure.
      • solve

        java.lang.String solve()
        Should be implemented to solve a certain problem.
        Returns:
        the solution of the problem / task as string
      • finish

        void finish()
        Should be implemented to finish the solving procedure.