Skip to content

Commit

Permalink
removes a wayward plot of unalloc data
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Park authored and Mike Park committed Jun 2, 2021
1 parent 3bc3d7c commit 1c3a018
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions src/ref_subcommand.c
Original file line number Diff line number Diff line change
Expand Up @@ -1846,21 +1846,14 @@ static REF_STATUS fixed_point_metric(
}
}
}
ref_free(min_scalar);
ref_free(max_scalar);

RSS(ref_metric_gradation_at_complexity(metric, ref_grid, gradation,
complexity),
"gradation at complexity");
ref_mpi_stopwatch_stop(ref_mpi, "metric gradation and complexity");

each_ref_node_valid_node(ref_grid_node(ref_grid), node) {
max_scalar[node] -= min_scalar[node];
}
RSS(ref_gather_scalar_by_extension(ref_grid, 1, max_scalar, NULL,
"max-scalar.plt"),
"gather recept");

ref_free(min_scalar);
ref_free(max_scalar);

return REF_SUCCESS;
}

Expand Down

0 comments on commit 1c3a018

Please sign in to comment.