auxiliaryproblem.java

来自「This is my implementation for linear pro」· Java 代码 · 共 27 行

JAVA
27
字号
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package ro.simplex;import java.util.ArrayList;/** * * @author Doan Chien Thang */public class AuxiliaryProblem extends ProblemInStandardForm {    private ProblemInStandardForm stdProblem;    public AuxiliaryProblem(ArrayList<Variable> vars,            ArrayList<Constraint> constraints, Objective objective) {        super(vars, constraints, objective);        this.nonbaseVars = null;//        this.auxiliaryVars = null;        this.auxiliaryProblem = null;        this.dict = null;        this.table = null;        this.transitions = null;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?