Skip to content

Commit 075990c

Browse files
committed
Added fig6 generator script that has a fix for ubuntu 18.04
1 parent 093e209 commit 075990c

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ There are two parts to the results with details for each below:
1313

1414
# QuickStart
1515

16-
The build has only been tested on Ubuntu 16.04 and 18.04 machines. Due to the need for
16+
The build has only been tested on Ubuntu 16.04 machine. Due to the need for
1717
Boost and ROSE for the CHiLL compiler, building all of the software on other platforms
1818
could be excessively challenging.
1919

fig6Gen.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env bash
2+
3+
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:./boost/lib
4+
./simplification list.txt
5+

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
# Step 0: Installation prerequisites:
4-
sudo apt-get install git wget tar unzip make autoconf automake cmake libtool default-jdk default-jre flex bison python-dev texinfo gnuplot-x11 evince doxygen
4+
sudo apt-get install build-essential git wget tar unzip make autoconf automake cmake libtool default-jdk default-jre flex bison python-dev texinfo gnuplot-x11 libisl-dev evince doxygen
55

66

77
# Step 1: Installing boost:

simplification.cc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -331,9 +331,7 @@ void driver(string list)
331331

332332
} // End of input json file list loop
333333

334-
int cmdErr = system ("cd results");
335-
cmdErr = system ("gnuplot gnpUnSatSimp.gnu");
336-
cmdErr = system ("cd ..");
334+
int cmdErr = system ("cd results && gnuplot gnpUnSatSimp.gnu && cd ..");
337335

338336
}
339337
// ----------- End of driver function --------------------------------------

0 commit comments

Comments
 (0)