Modify Makefile; add .gitignores in subfolders

This commit is contained in:
J.-S. Caux
2018-02-09 21:46:02 +01:00
parent 103cbe84d6
commit 7fb3e6d3b4
6 changed files with 84 additions and 84 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ using namespace std;
namespace JSC {
Choose_Table::Choose_Table ()
Choose_Table::Choose_Table ()
: Npower(0ULL), Npowerp1(1ULL), table(new unsigned long long int[1])
{
table[0] = 1ULL;
@@ -32,7 +32,7 @@ namespace JSC {
dim = Npowerp1 * Npowerp1;
// We can only go up to ULL_MAX:
if (log(DP(ULONG_LONG_MAX)) < DP(Npowerp1) * log(2.0))
if (log(DP(ULLONG_MAX)) < DP(Npowerp1) * log(2.0))
JSCerror("Choose_Table: too large to contruct.");
table = new unsigned long long int[dim];