TableLogger

Documentation for TableLogger.

TableLogger.DiffXType
DiffX{V,B}

Can be used to specify the absolute difference which makes the given value different enough from the previous value to print a new line. As an example if the last value is DiffX(5, 10) and the new value is DiffX(5, 12) the change is not significant enough. If the next value however is DiffX(5, 15) then the value is different enough from the last printed value 10. Therefore a new line is printed.

source
TableLogger.DiffXMethod
DiffX(by)

Create an anonymous function with something like Diffd1 = DiffX(0.1) to be able to use Diffd1(10.0) instead of DiffX(0.1, 10.0).

source
TableLogger.TableSetupType
struct TableSetup

Stores information about the columns of the table by storing: ids, names, widths, alignments and precision

source
TableLogger.differs_enoughMethod
differs_enough(value, prev_value)

Return true if the value is significantly different from prev_value. In this default case simply return true if they are different. Provide your own differs_enough function by dispatching on both values.

source
TableLogger.fill_from_prev!Method
fill_from_prev!(table::Table)

If a value isn't given by a new called set_value! since the last call to print_line the previous value will be used. This function overwrites table.current_values to set unassigned values to table.prev_values.

source
TableLogger.format_table_valueMethod
format_table_value(width::Int, value; default_precision=2)

Format the table value using the given width and value.

For val::Real

  • return a string representation that fits in the width and return "<<" if val is smaller than 0 but can't be represented or ">>" when it's bigger than 0.

For val::Integer

  • return simply the string representation and t.l. if it doesn't fit

For all others:

  • return simply the string representation and t.l. if it doesn't fit
source
TableLogger.get_column_idMethod
get_column_id(table::Table, sym::Symbol)

Return the column id of the given symbol sym. If the symbol doesn't exist throw an error.

source
TableLogger.init_log_tableMethod
init_log_table(columns::NamedTuple...; width=20, alignment=:center, precision=2)

Initialize the table structure by a list of information for each column.

Example

table = init_log_table(
    (id=:open_nodes, name="#Open", width=30),
    (id=:closed_nodes, name="#Closed"),
)

Would create a table with two columns named #Open and #Closed and the width of #Open is 30. The default width of 20 is used for the closed nodes and both tables use the default alignment :center.

table = init_log_table(
    (id=:open_nodes, name="#Open", width=30),
    (id=:closed_nodes, name="#Closed");
    alignment = :left
)

In this case the default alignment is changed to :left.

source
TableLogger.init_log_tableMethod
init_log_table(ids::Vector{Symbol}, names::Vector{String}, widths::Vector{Int}, alignments::Vector{Symbol}, precisions::Vector{Int})

Initialize the table structure with a vector of ids, names, widths, alignments and precisions.

source
TableLogger.print_lineMethod
print_line(table::Table; force=false)

Print the new line of the table if it differs enough from the previous line or if force = true. If the new line gets printed set the prev_values to current_values and the current_values to an nothing.

source
TableLogger.shall_print_lineMethod
shall_print_line(table::Table; force=false)

Return whether the new line shall be printed. If force = true return true immediately. Otherwise check if at least one value differs enough from the previous value by calling differs_enough.

source