Configuration

To extract, parse, verify, and print the configuration parameters. They are stored in external files (case.toml) or dictionaries.

Source: config.jl

Contents

Index

Functions

ZenCore.renewFunction
renew()

Read parameters from configuration file, and then renew the related dicts. Noted that only parts of the parameters in the dicts are updated.

See also: inp_toml, rev_dict, chk_dict.

ZenCore.inp_tomlFunction
inp_toml(f::String, key::String, necessary::Bool)

Parse the configuration file (in toml format). It reads only parts of the configuration file, which depends on the value of key.

See also: setup.

inp_toml(f::String, necessary::Bool)

Parse the configuration file (in toml format). It reads the whole file.

See also: setup.

ZenCore.fil_dictFunction
fil_dict(cfg::Dict{String,Any})

Transfer configurations from dict cfg to internal dicts (including PCASE, PDFT, PDMFT, PIMP, and PSOLVER).

See also: chk_dict.

ZenCore.rev_dictFunction
rev_dict(cfg::Dict{String,Any})

Transfer configurations from dict cfg to internal dicts (including PDMFT, PIMP, and PSOLVER). This function is used to update some special configuration parameters dynamically.

See also: chk_dict.

ZenCore.exhibitFunction
exhibit()

Display the configuration parameters for reference.

See also: setup.

ZenCore._vFunction
_v(key::String, val::Array{Any,1})

Verify the value array. Called by chk_dict() function only.

See also: chk_dict.

ZenCore.cat_cFunction
cat_c()

Print the configuration parameters to stdout: for PCASE dict.

See also: get_c, str_c.

ZenCore.cat_dFunction
cat_d()

Print the configuration parameters to stdout: for PDFT dict.

See also: get_d, str_d.

ZenCore.cat_mFunction
cat_m()

Print the configuration parameters to stdout: for PDMFT dict.

See also: get_m, str_m.

ZenCore.cat_iFunction
cat_i()

Print the configuration parameters to stdout: for PIMP dict.

See also: get_i, str_i.

ZenCore.cat_sFunction
cat_s()

Print the configuration parameters to stdout: for PSOLVER dict.

See also: get_s, str_s.

ZenCore.str_cFunction
str_c(key::String)

Extract configurations from dict: PCASE, convert them into strings.

See also: cat_c, get_c.

ZenCore.str_dFunction
str_d(key::String)

Extract configurations from dict: PDFT, convert them into strings.

See also: cat_d, get_d.

ZenCore.str_mFunction
str_m(key::String)

Extract configurations from dict: PDMFT, convert them into strings.

See also: cat_m, get_m.

ZenCore.str_iFunction
str_i(key::String)

Extract configurations from dict: PIMP, convert them into strings.

See also: cat_i, get_i.

ZenCore.str_sFunction
str_s(key::String)

Extract configurations from dict: PSOLVER, convert them into strings.

See also: cat_s, get_s.