Skip to content

Commit

Permalink
Slightly more thorough logging in nassau
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeyBF committed Dec 21, 2024
1 parent 419fafd commit fea7357
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ext/src/nassau.rs
Original file line number Diff line number Diff line change
Expand Up @@ -715,6 +715,7 @@ impl<M: ZeroModule<Algebra = MilnorAlgebra>> Resolution<M> {
}

/// Step resolution for s = 0
#[tracing::instrument(skip(self))]
fn step0(&self, t: i32) {
self.zero_module.extend_by_zero(t);

Expand Down Expand Up @@ -765,6 +766,7 @@ impl<M: ZeroModule<Algebra = MilnorAlgebra>> Resolution<M> {
}

/// Step resolution for s = 1
#[tracing::instrument(skip(self))]
fn step1(&self, t: i32) -> anyhow::Result<()> {
let p = self.prime();

Expand Down Expand Up @@ -837,6 +839,8 @@ impl<M: ZeroModule<Algebra = MilnorAlgebra>> Resolution<M> {
.save_file(SaveKind::NassauDifferential, b)
.open_file(dir.clone())
{
tracing::info!("Loading differential at {b}");

let num_new_gens = f.read_u64::<LittleEndian>()? as usize;
// This need not be equal to `target_res_dimension`. If we saved a big resolution
// and now only want to load up to a small stem, then `target_res_dimension` will
Expand Down

0 comments on commit fea7357

Please sign in to comment.