Inspect search and problem statistics.
For an example, see statistics.c.
|
typedef int | clingo_statistics_type_t |
| Corresponding type to clingo_statistics_type.
|
|
typedef struct clingo_statistic | clingo_statistics_t |
| Handle for the solver statistics.
|
|
|
CLINGO_VISIBILITY_DEFAULT bool | clingo_statistics_map_size (clingo_statistics_t const *statistics, uint64_t key, size_t *size) |
| Get the number of subkeys of a map entry.
|
|
CLINGO_VISIBILITY_DEFAULT bool | clingo_statistics_map_has_subkey (clingo_statistics_t const *statistics, uint64_t key, char const *name, bool *result) |
| Test if the given map contains a specific subkey.
|
|
CLINGO_VISIBILITY_DEFAULT bool | clingo_statistics_map_subkey_name (clingo_statistics_t const *statistics, uint64_t key, size_t offset, char const **name) |
| Get the name associated with the offset-th subkey.
|
|
CLINGO_VISIBILITY_DEFAULT bool | clingo_statistics_map_at (clingo_statistics_t const *statistics, uint64_t key, char const *name, uint64_t *subkey) |
| Lookup a subkey under the given name.
|
|
CLINGO_VISIBILITY_DEFAULT bool | clingo_statistics_map_add_subkey (clingo_statistics_t *statistics, uint64_t key, char const *name, clingo_statistics_type_t type, uint64_t *subkey) |
| Add a subkey with the given name.
|
|
◆ clingo_statistics_type_e
Enumeration for entries of the statistics.
Enumerator |
---|
clingo_statistics_type_empty | the entry is invalid (has neither of the types below)
|
clingo_statistics_type_value | the entry is a (double) value
|
clingo_statistics_type_array | the entry is an array
|
clingo_statistics_type_map | the entry is a map
|
◆ clingo_statistics_array_at()
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_array_at |
( |
clingo_statistics_t const * | statistics, |
|
|
uint64_t | key, |
|
|
size_t | offset, |
|
|
uint64_t * | subkey ) |
Get the subkey at the given offset of an array entry.
- Precondition
- The type of the entry must be clingo_statistics_type_array.
- Parameters
-
[in] | statistics | the target statistics |
[in] | key | the key |
[in] | offset | the offset in the array |
[out] | subkey | the resulting subkey |
- Returns
- whether the call was successful
- Examples
- statistics.c.
◆ clingo_statistics_array_push()
Create the subkey at the end of an array entry.
- Precondition
- The type of the entry must be clingo_statistics_type_array.
- Parameters
-
[in] | statistics | the target statistics |
[in] | key | the key |
[in] | type | the type of the new subkey |
[out] | subkey | the resulting subkey |
- Returns
- whether the call was successful
- Examples
- statistics.c.
◆ clingo_statistics_array_size()
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_array_size |
( |
clingo_statistics_t const * | statistics, |
|
|
uint64_t | key, |
|
|
size_t * | size ) |
Get the size of an array entry.
- Precondition
- The type of the entry must be clingo_statistics_type_array.
- Parameters
-
[in] | statistics | the target statistics |
[in] | key | the key |
[out] | size | the resulting size |
- Returns
- whether the call was successful
- Examples
- statistics.c.
◆ clingo_statistics_map_add_subkey()
Add a subkey with the given name.
- Precondition
- The type of the entry must be clingo_statistics_type_map.
- Parameters
-
[in] | statistics | the target statistics |
[in] | key | the key |
[in] | name | the name of the new subkey |
[in] | type | the type of the new subkey |
[out] | subkey | the index of the resulting subkey |
- Returns
- whether the call was successful
- Examples
- statistics.c.
◆ clingo_statistics_map_at()
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_map_at |
( |
clingo_statistics_t const * | statistics, |
|
|
uint64_t | key, |
|
|
char const * | name, |
|
|
uint64_t * | subkey ) |
Lookup a subkey under the given name.
- Precondition
- The type of the entry must be clingo_statistics_type_map.
- Note
- Multiple levels can be looked up by concatenating keys with a period.
- Parameters
-
[in] | statistics | the target statistics |
[in] | key | the key |
[in] | name | the name to look up the subkey |
[out] | subkey | the resulting subkey |
- Returns
- whether the call was successful
- Examples
- statistics.c.
◆ clingo_statistics_map_has_subkey()
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_map_has_subkey |
( |
clingo_statistics_t const * | statistics, |
|
|
uint64_t | key, |
|
|
char const * | name, |
|
|
bool * | result ) |
Test if the given map contains a specific subkey.
- Precondition
- The type of the entry must be clingo_statistics_type_map.
- Parameters
-
[in] | statistics | the target statistics |
[in] | key | the key |
[in] | name | name of the subkey |
[out] | result | true if the map has a subkey with the given name |
- Returns
- whether the call was successful
◆ clingo_statistics_map_size()
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_map_size |
( |
clingo_statistics_t const * | statistics, |
|
|
uint64_t | key, |
|
|
size_t * | size ) |
Get the number of subkeys of a map entry.
- Precondition
- The type of the entry must be clingo_statistics_type_map.
- Parameters
-
[in] | statistics | the target statistics |
[in] | key | the key |
[out] | size | the resulting number |
- Returns
- whether the call was successful
- Examples
- statistics.c.
◆ clingo_statistics_map_subkey_name()
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_map_subkey_name |
( |
clingo_statistics_t const * | statistics, |
|
|
uint64_t | key, |
|
|
size_t | offset, |
|
|
char const ** | name ) |
Get the name associated with the offset-th subkey.
- Precondition
- The type of the entry must be clingo_statistics_type_map.
- Parameters
-
[in] | statistics | the target statistics |
[in] | key | the key |
[in] | offset | the offset of the name |
[out] | name | the resulting name |
- Returns
- whether the call was successful
- Examples
- statistics.c.
◆ clingo_statistics_root()
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_root |
( |
clingo_statistics_t const * | statistics, |
|
|
uint64_t * | key ) |
Get the root key of the statistics.
- Parameters
-
[in] | statistics | the target statistics |
[out] | key | the root key |
- Returns
- whether the call was successful
- Examples
- statistics.c.
◆ clingo_statistics_type()
Get the type of a key.
- Parameters
-
[in] | statistics | the target statistics |
[in] | key | the key |
[out] | type | the resulting type |
- Returns
- whether the call was successful
- Examples
- statistics.c.
◆ clingo_statistics_value_get()
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_value_get |
( |
clingo_statistics_t const * | statistics, |
|
|
uint64_t | key, |
|
|
double * | value ) |
Get the value of the given entry.
- Precondition
- The type of the entry must be clingo_statistics_type_value.
- Parameters
-
[in] | statistics | the target statistics |
[in] | key | the key |
[out] | value | the resulting value |
- Returns
- whether the call was successful
- Examples
- statistics.c.
◆ clingo_statistics_value_set()
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_value_set |
( |
clingo_statistics_t * | statistics, |
|
|
uint64_t | key, |
|
|
double | value ) |
Set the value of the given entry.
- Precondition
- The type of the entry must be clingo_statistics_type_value.
- Parameters
-
[in] | statistics | the target statistics |
[in] | key | the key |
[out] | value | the new value |
- Returns
- whether the call was successful
- Examples
- statistics.c.