galois.get_printoptions() dict[str, Any]

Returns the current print options for the package. This function is the galois equivalent of numpy.get_printoptions().

Returns:

A dictionary of current print options.

Examples

In [1]: galois.get_printoptions()
Out[1]: {'coeffs': 'desc'}
In [2]: galois.set_printoptions(coeffs="asc")

In [3]: galois.get_printoptions()
Out[3]: {'coeffs': 'asc'}