Skip to content
Snippets Groups Projects
Commit 33150532 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

tentative fix x2

parent c10621c2
Branches
Tags
No related merge requests found
......@@ -204,11 +204,11 @@ bool onelab::localNetworkClient::run()
get(ps, getName() + "/9ComputeCommand");
std::string computeCommand = (ps.empty() ? "" : ps[0].getValue());
if(action == "check")
command.append(" '" + modelName + "' " + checkCommand) ;
command.append(" \"" + modelName + "\" " + checkCommand) ;
else if(action == "compute")
command.append(" '" + modelName + "' " + computeCommand);
command.append(" \"" + modelName + "\" " + computeCommand);
}
command.append(" " + getSocketSwitch() + " '" + getName() + "' %s");
command.append(" " + getSocketSwitch() + " \"" + getName() + "\" %s");
}
else{
Msg::Info("Listening on socket '%s'", sockname.c_str());
......
......@@ -327,8 +327,10 @@
{ "Tan", tan },
{ "tanh", tanh },
{ "Tanh", tanh },
#if !defined(WIN32)
{ "atanh", atanh },
{ "Atanh", atanh },
#endif
{ "trunc", trunc }, // added
{ "Trunc", trunc },
{ "floor", floor }, // largest integer not grather than x
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment