コード例 #1
0
ファイル: LPsolve.cs プロジェクト: fbergmann/FluxBalance
 public static extern void set_anti_degen(int lp, lpsolve_anti_degen anti_degen);
コード例 #2
0
 public static extern void set_anti_degen(int lp, lpsolve_anti_degen anti_degen);
コード例 #3
0
 public static extern void set_anti_degen(IntPtr lp, lpsolve_anti_degen anti_degen);
コード例 #4
0
ファイル: lpsolve55.cs プロジェクト: rachmadvwp/NOCulator
 [DllImport("lpsolve55.dll", SetLastError = true)] public static extern void set_anti_degen(int lp, lpsolve_anti_degen anti_degen);
コード例 #5
0
ファイル: LpSolve.cs プロジェクト: zhangbo27/LpSolveDotNet
 public void set_anti_degen(lpsolve_anti_degen anti_degen)
 {
     Interop.set_anti_degen(_lp, anti_degen);
 }
コード例 #6
0
ファイル: LpSolve.cs プロジェクト: zhangbo27/LpSolveDotNet
 public bool is_anti_degen(lpsolve_anti_degen testmask)
 {
     return(Interop.is_anti_degen(_lp, testmask));
 }
コード例 #7
0
ファイル: lpsolve55.cs プロジェクト: hirous/test
 [DllImport("lpsolve55.dll", SetLastError=true)] public static extern void set_anti_degen(int lp, lpsolve_anti_degen anti_degen);
コード例 #8
0
ファイル: Interop.cs プロジェクト: zhangbo27/LpSolveDotNet
 public static extern bool is_anti_degen(IntPtr lp, lpsolve_anti_degen testmask);