Reading and writing (qics.io)

This module contains functions used to read and write conic programs represented by a Model to a file of a specified format. Currently, we support the following file formats

  • *.dat-s: SDPA sparse format

  • *.dat-c: Complex SDPA sparse format

  • *.cbf: Conic Benchmark Format

Further details about these file formats can be found in the user guide.

read_file(filename)

Reads a conic program from a file of a specified format.

write_file(model, filename)

Write a conic program to a file of a specified format

SDPA sparse format

read_sdpa(filename)

Reads a semidefinite program in the SDPA sparse format.

write_sdpa(model, filename)

Write a semidefinite program to a SDPA sparse file.

Conic Benchmark Format

read_cbf(filename)

Reads a conic program in the CBF format.

write_cbf(model, filename)

Write a conic program to a CBF file.