Sets the default output stream of the invoking Cplex object.

Namespace: ILOG.CPLEX
Assembly: ILOG.CPLEX (in ILOG.CPLEX.dll) Version: 22.1.1.0

Syntax

C#
public virtual void SetOut(
	TextWriter s
)
Visual Basic
Public Overridable Sub SetOut ( _
	s As TextWriter _
)

Parameters

s
Type: System.IO..::..TextWriter
The new default output stream.

Remarks

After this call, all logging output will be output via the new stream. Passing null as the new output stream will turn off all logging output.

See Also