1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-21 18:37:11 +00:00

Improve logging.

This commit is contained in:
Thomas Harte 2025-01-20 16:19:02 -05:00
parent f449045118
commit b7414aa59c
2 changed files with 6 additions and 0 deletions

View File

@ -726,6 +726,9 @@ private:
// MARK: - Confidence.
Analyser::Dynamic::ConfidenceCounter confidence_;
float get_confidence() final { return confidence_.get_confidence(); }
std::string debug_type() final {
return "Plus4";
}
// MARK: - Configuration options.
std::unique_ptr<Reflection::Struct> get_options() const final {

View File

@ -768,6 +768,9 @@ private:
// MARK: - Confidence.
Analyser::Dynamic::ConfidenceCounter confidence_;
float get_confidence() final { return confidence_.get_confidence(); }
std::string debug_type() final {
return "Vic20";
}
};
}