it.ssc.log.SscLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsr331-ssc Show documentation
Show all versions of jsr331-ssc Show documentation
This is a JSR331 interface for SSC (Software for the Calculation of the Simplex) is a java library for solving linear programming problems v. 3.0.1.
SSC was designed and developed by Stefano Scarioli.
The newest version!
package it.ssc.log;
import java.util.logging.Level;
public class SscLevel extends Level {
public static final Level LOG=new SscLevel("LOG",811);
public static final Level NOTE=new SscLevel("NOTE",821);
public static final Level TIME=new SscLevel("TIME",831);
protected SscLevel(String arg0, int arg1) {
super(arg0, arg1);
}
/**
*
*/
private static final long serialVersionUID = 1L;
}