Skip to content

Commit

Permalink
Mark query-based relations as observed
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasColthurst committed Aug 7, 2024
1 parent 116e406 commit fcfa603
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cxx/pclean/schema_helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,10 @@ T_schema PCleanSchemaHelper::make_hirm_schema() {
domains[query_class.name],
annotated_domains[query_class.name],
path_prefix);
tschema[f.name] = get_emission_relation(
T_noisy_relation tnr = get_emission_relation(
std::get<ScalarVar>(sv.spec), reordered_domains, base_relation);
tnr.is_observed = true;
tschema[f.name] = tnr;
}

return tschema;
Expand Down

0 comments on commit fcfa603

Please sign in to comment.