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

it.ssc.log.SscLevel Maven / Gradle / Ivy

Go to download

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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy