Add a collector of unification + solve events

This commit is contained in:
Ayaz Hafiz 2023-07-16 00:38:44 -05:00
parent 40223a697d
commit 1df2e942a2
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
4 changed files with 197 additions and 2 deletions

View file

@ -1,6 +1,9 @@
mod collector;
mod convert;
mod schema;
pub use collector::Collector;
pub fn is_checkmate_enabled() -> bool {
let flag = std::env::var("ROC_CHECKMATE");
flag.as_deref() == Ok("1")