Skip to content

Commit

Permalink
back to bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jhellerstein committed Oct 10, 2024
1 parent 1cb50d4 commit fb35e97
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lattices/src/ght_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ mod test {
}
#[test]
fn test_merge() {
type MyGht = GhtType!(u32, u64 => u16, &'static str: Row);
type MyGht = GhtType!(u32, u64 => u16, &'static str: Set);

let mut test_ght1 = MyGht::new_from(vec![var_expr!(42, 314, 10, "hello")]);
let test_ght2 = MyGht::new_from(vec![var_expr!(42, 314, 10, "hello")]);
Expand Down Expand Up @@ -348,8 +348,8 @@ mod test {
}
#[test]
fn test_node_lattice() {
type MyGht = GhtType!(u32, u64 => u16, &'static str: Row);
type MyGhtNode = GhtType!(u32, u64 => u16, &'static str: Row);
type MyGht = GhtType!(u32, u64 => u16, &'static str: Set);
type MyGhtNode = GhtType!(u32, u64 => u16, &'static str: Set);

let mut test_vec: Vec<MyGhtNode> = Vec::new();

Expand All @@ -374,8 +374,8 @@ mod test {

#[test]
fn test_cartesian_bimorphism() {
type MyGhtA = GhtType!(u32, u64 => u16, &'static str: Row);
type MyGhtB = GhtType!(u32, u64, u16 => &'static str: Row);
type MyGhtA = GhtType!(u32, u64 => u16, &'static str: Set);
type MyGhtB = GhtType!(u32, u64, u16 => &'static str: Set);

let mut ght_a = MyGhtA::default();
let mut ght_b = MyGhtB::default();
Expand Down

0 comments on commit fb35e97

Please sign in to comment.