Learn R Programming

highs (version 1.10.0-1)

hi_solver_write_basis: Write Basis to File

Description

This function writes the current basis information to a file.

Usage

hi_solver_write_basis(solver, filename)

Value

Invisible NULL.

Arguments

solver

An object of class "highs_solver".

filename

A character string specifying the output file path.

Examples

Run this code
solver <- example_solver()
basis_file <- tempfile(fileext = ".txt")
hi_solver_write_basis(solver, basis_file)

Run the code above in your browser using DataLab