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

it.ssc.formats.FormatsStep 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.formats;

public interface FormatsStep {
	
	public enum TYPE_FORMAT {CODE_ALPHABETIC, CODE_NUMERIC, CODE_NUMERIC_RANGE}; 
	
	public void setSpecific(TYPE_FORMAT code,String field_name_format,String filed_name_value, 
							    String filed_name_condition,String filed_name_value2,String filed_name_label); 
	
	public void setNamesFormatsToLoading(String... format_names_to_be_loaded);
	
	public void execute() throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy