This PR sets up the new integrated test/bench suite. It then migrates all benchmarks and some related tests to the new suite. There's also some documentation and some linting. For now, a lot of the old tests are left alone so this PR doesn't become even larger than it already is. Eventually, all tests should be migrated to the new suite though so there isn't a confusing mix of two systems.
12 lines
1 KiB
Text
12 lines
1 KiB
Text
@Lineage.container'.eq_1 : ∀ {rtr : Reactor} {i : ID} (rtr' : Reactor) (i' : ID) (rtr'_1 : Reactor) (i'_1 : ID)
|
|
(l : Lineage rtr'_1 i) (h : rtr'.nested i'_1 = some rtr'_1) (a : rtr.nested i' = some rtr'),
|
|
((l.nested h).nested a).container' = (l.nested h).container'
|
|
@Lineage.container'.eq_2 : ∀ {rtr : Reactor} {i : ID} (rtr' : Reactor) (i' : ID) (a : Lineage rtr' i)
|
|
(a_1 : rtr.nested i' = some rtr'),
|
|
(∀ (rtr'_1 : Reactor) (i' : ID) (l : Lineage rtr'_1 i) (h : rtr'.nested i' = some rtr'_1), a = l.nested h → False) →
|
|
(a.nested a_1).container' = (some i', rtr')
|
|
@Lineage.container'.eq_3 : ∀ {rtr : Reactor} {i : ID} (x : Lineage rtr i),
|
|
(∀ (rtr' : Reactor) (i' : ID) (rtr'_1 : Reactor) (i'_1 : ID) (l : Lineage rtr'_1 i)
|
|
(h : rtr'.nested i'_1 = some rtr'_1) (a : rtr.nested i' = some rtr'), x = (l.nested h).nested a → False) →
|
|
(∀ (rtr' : Reactor) (i' : ID) (a : Lineage rtr' i) (a_1 : rtr.nested i' = some rtr'), x = a.nested a_1 → False) →
|
|
x.container' = (none, rtr)
|