huiscliu / sxamg

Algebraic Multigrid (AMG) Solver Library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Meaning of the variable 'verb'

TXTsky opened this issue · comments

Hi,
When I was reading your code, I saw a variable verb. I'm sorry I didn't understand the function of the variable. Could you please tell me the details of the variable?
For example, in example/amg.c
pars.verb = 3;

Thanks!

verb controls how much information will be output during assembling and solution. Higher value means more output. 0 or negative means no output...

Thanks!