Merge branch 'master' of git.ucc.asn.au:ipdf/code
[ipdf/code.git] / tools / common.py
1
2 import sys
3 import os
4 import time
5 import subprocess
6 from progressbar import * # From ipython github site
7 from IPython.core.display import Image
8 from IPython.display import display, clear_output
9 import threading
10
11 options = {
12     "real_names" : ["single", "double", "long", "virtual", "Rational_GMPint", "Rational_Arbint", "mpfrc++", "iRRAM", "ParanoidNumber", "GMPrat"],
13     "ipdf_src" : "../src/",
14     "ipdf_bin" : "../bin/ipdf",
15     "local_bin" : "./",
16     "tests" : "../src/tests/",
17     "ignore" : ["virtual", "Rational_Arbint", "iRRAM", "ParanoidNumber"],
18     "tobuild" : ["single", "double", "mpfrc++","GMPrat"],
19     "numerical_tests" : ["identitytests"],
20     "built" : []
21 }

UCC git Repository :: git.ucc.asn.au