1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-10 19:36:56 +01:00

Minor modification to the configure.ac

Enables silent rules (use make V=1 to override)
Prints a summary after configure is completed
This commit is contained in:
neo
2015-05-18 17:15:14 +09:00
parent 6d2accba7b
commit fa1dc5e448
17 changed files with 265 additions and 4 deletions

View File

@ -322,7 +322,7 @@ public:
friend bigfloat abs_bf(const bigfloat& x){
bigfloat a;
a.x=abs(x.x);
a.x=fabs(x.x);
return a;
}