Skip to content

Commit

Permalink
Fixing Ising default file and fixing warnings at compile time, curren…
Browse files Browse the repository at this point in the history
…t commit will be used for darwin experiments
  • Loading branch information
hhijazi committed Jan 22, 2018
1 parent b36358b commit 5391096
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/NLP/Ising/Ising_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ int main (int argc, char * argv[])
{
int output = 5;
bool relax = false;
string fname = "../data_sets/Ising/samples_bin.csv", log_level="5";
string fname = "../data_sets/Ising/samples_bin_sml.csv", log_level="5";
string path = argv[0];
if (path.find("/bin")!=string::npos && path.find("/bin/ising")==string::npos) {//Not running from terminal
fname = "../" + fname;
Expand Down
2 changes: 1 addition & 1 deletion include/gravity/Node.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class Node{
std::vector<Arc*> get_in();


virtual vector<gravity::aux*> get_gens(){};
virtual vector<gravity::aux*> get_gens(){return vector<gravity::aux*>();};

/* return its neighbours */
std::set<Node*> get_neighbours();
Expand Down

0 comments on commit 5391096

Please sign in to comment.