remove stg feedback from systemstate flag

This commit is contained in:
Alwin Berger 2024-05-08 12:49:40 +02:00
parent 3f9a2ed6c0
commit ba3850cf4d

View File

@ -144,8 +144,17 @@ pub struct StgFeedback
name: String,
last_trace: Option<Vec<NodeIndex>>,
}
#[cfg(feature = "feed_stg")]
const INTEREST_EDGE : bool = false;
#[cfg(feature = "feed_stg")]
const INTEREST_NODE : bool = false;
#[cfg(feature = "feed_stg")]
const INTEREST_AGGREGATE : bool = false;
#[cfg(not(feature = "feed_stg"))]
const INTEREST_EDGE : bool = true;
#[cfg(not(feature = "feed_stg"))]
const INTEREST_NODE : bool = true;
#[cfg(not(feature = "feed_stg"))]
const INTEREST_AGGREGATE : bool = true;
fn set_observer_map(trace : &Vec<EdgeIndex>) {
unsafe {