Skip to content
Snippets Groups Projects
Commit e787f1cc authored by Markus Blatt's avatar Markus Blatt
Browse files

Make superlutest compile for types other than double again.

parent 449b0515
No related branches found
No related tags found
No related merge requests found
......@@ -78,5 +78,5 @@ int main(int argc, char** argv)
std::cout<<"Defect reduction is "<<res.reduction<<std::endl;
solver1.apply(x,b, res);
solver1.apply(reinterpret_cast<double*>(&x[0]), reinterpret_cast<double*>(&b[0]));
solver1.apply(reinterpret_cast<FIELD_TYPE*>(&x[0]), reinterpret_cast<double*>(&b[0]));
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment