← Back to team overview

dolfin team mailing list archive

Re: progress bar suppression

 

Quoting Gideon Simpson <grs2103@xxxxxxxxxxxx>:

> how can i suppress the progress bars for the application of boundary  
> conditions?

The following works:

assembler.assemble(A, a);
assembler.assemble(b, L);

set("output destination", "silent");
bc.apply(A, b, x, a);
set("output destination", "terminal");

Kristian
 
> -gideon
> 
> 




Follow ups

References