Initializing help system before first use

GetIISData Method (Int32, Int32, Int32, Int32[], Int32[], Char[], Char[], Double[], Double[], Char[], Char[])

Returns information for an Irreducible Infeasible Set: size, variables and constraints (row and column vectors), and conflicting sides of the variables. For pure linear problems there is also information on duals, reduced costs and isolations.

Namespace:   Optimizer
Assembly:  xprsdn (in xprsdn.dll) Version: 44.01.01
Syntax
C#
public void GetIISData(
	int iis,
	out int p_nrows,
	out int p_ncols,
	int[] rowind,
	int[] colind,
	char[] contype,
	char[] bndtype,
	double[] duals,
	double[] djs,
	char[] isolationrows,
	char[] isolationcols
)

Parameters

iis
Type:  System.Int32
The ordinal number of the IIS to get data for.
p_nrows
Type:  System.Int32
Pointer to an integer where the number of rows in the IIS will be returned.
p_ncols
Type:  System.Int32
Pointer to an integer where the number of bounds in the IIS will be returned.
rowind
Type:  System.Int32
Indices of rows in the IIS. Can be null if not required.
colind
Type:  System.Int32
Indices of bounds (columns) in the IIS. Can be null if not required.
contype
Type:  System.Char
Sense of rows in the IIS:
  • L: for less or equal row;
  • G: for greater or equal row.
  • E: for an equality row (for a non LP IIS);
  • 1: for a SOS1 row;
  • 2: for a SOS2 row;
  • W: for a piecewise linear constraint;
  • X: for a general constraint;
  • I: for an indicator row.
Can be null if not required.
bndtype
Type:  System.Char
Sense of bound in the IIS:
  • U: for upper bound;
  • L: for lower bound.
  • F: for fixed columns (for a non LP IIS);
  • B: for a binary column;
  • I: for an integer column;
  • P: for a partial integer columns;
  • S: for a semi-continuous column;
  • R: for a semi-continuous integer column.
Can be null if not required.
duals
Type:  System.Double
The dual multipliers associated with the rows. Can be null if not required.
djs
Type:  System.Double
The dual multipliers (reduced costs) associated with the bounds. Can be null if not required.
isolationrows
Type:  System.Char
The isolation status of the rows:
  • -1: if isolation information is not available for row (run iis isolations);
  • 0: if row is not in isolation;
  • 1: if row is in isolation.
Can be null if not required.
isolationcols
Type:  System.Char
The isolation status of the bounds:
  • -1: if isolation information is not available for column (run iis isolations);
  • 0: if column is not in isolation;
  • 1: if column is in isolation.
Can be null if not required.
Remarks
This function is used in the following examples:
  • IISExample
See Also

© 2001-2024 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.