All Downloads are FREE. Search and download functionalities are using the official Maven repository.

us.ihmc.convexOptimization.exceptions.NoConvergenceException Maven / Gradle / Ivy

There is a newer version: 0.17.22
Show newest version
package us.ihmc.convexOptimization.exceptions;

public class NoConvergenceException extends Exception
{
   private int iter;
   private static final long serialVersionUID = 6212719102444264616L;

   public NoConvergenceException()
   {
      this(-1);
   }

   public NoConvergenceException(int iter)
   {
      this.iter = iter;
   }

   public int getIter()
   {
      return iter;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy