Skip to content

output

Syntax

condition <condition-name> {
    output = <value>
}

Description

The output property indicates whether data regarding a condition should be recorded to the FRED results directory.

The data recorded consists of the daily time series for the given condition. The default for conditions is output = 1. It saves time and disk space to set output = 0 for conditions for which detailed time-series data is not needed.

The <value> can be either 0 or 1, where 0 produces no output and 1 produces output.

Examples

The following code defines a condition and turns off its output.

condition EXAMPLE {
    start_state = Start
    output = 0

    state Start {
        print(id())
        wait(0)
        default(Excluded)
    }
}

See Also