We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d786ae commit 5813326Copy full SHA for 5813326
src/function/execute.rs
@@ -165,7 +165,6 @@ where
165
&& old_memo.cycle_heads().contains(&database_key_index)
166
&& !memo_iteration_count.is_panicked()
167
{
168
- // BUG, we need to pass in previous memo even for the first iteration.
169
last_provisional_memo = Some(old_memo);
170
iteration_count = memo_iteration_count;
171
}
src/zalsa_local.rs
@@ -566,6 +566,7 @@ struct QueryRevisionsExtraInner {
566
567
/// Stores for nested cycle heads whether they've converged in the last iteration.
568
/// This value is always `false` for other queries.
569
+ #[cfg_attr(feature = "persistence", serde(skip))]
570
cycle_converged: bool,
571
572
0 commit comments