Skip to content

Commit b090952

Browse files
Switch to main branch of egglog
1 parent ba1a173 commit b090952

File tree

3 files changed

+22
-20
lines changed

3 files changed

+22
-20
lines changed

Cargo.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ harness = false
88
name = "files"
99

1010
[dependencies]
11-
egglog = { git = "https://github.com/saulshanabrook/egg-smol.git", rev = "afe962958b57b6101f3f48e980f910fa063f3f6e" }
11+
egglog = { git = "https://github.com/egraphs-good/egglog.git", rev = "0be495630546acffbd545ba60feb9302281ce95c" }
1212

1313
num = "0.4.3"
1414
lazy_static = "1.4"

tests/files.rs

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,13 @@ impl Run {
5353
print!(" {}", output);
5454
}
5555
// Test graphviz dot generation
56-
let mut serialized = egraph.serialize(SerializeConfig {
57-
max_functions: Some(40),
58-
max_calls_per_function: Some(40),
59-
..Default::default()
60-
});
56+
let mut serialized = egraph
57+
.serialize(SerializeConfig {
58+
max_functions: Some(40),
59+
max_calls_per_function: Some(40),
60+
..Default::default()
61+
})
62+
.egraph;
6163
serialized.to_dot();
6264
// Also try splitting and inlining
6365
serialized.split_classes(|id, _| egraph.from_node_id(id).is_primitive());

0 commit comments

Comments
 (0)