1
0
Fork 0
mirror of https://github.com/gwm17/catima.git synced 2024-11-22 18:28:51 -05:00
This commit is contained in:
hrocho 2019-05-15 17:27:37 +02:00
parent 6e8a41ea87
commit 7a837f36a3

View File

@ -24,7 +24,7 @@ std::string material_to_string(const Material &r){
for(int i = 0; i < n; i++){ for(int i = 0; i < n; i++){
auto el = r.get_element(i); auto el = r.get_element(i);
s += "#"+std::to_string(i); s += "#"+std::to_string(i);
s += ": A = "+std::to_string(el.A) + ", Z = "+std::to_string(el.A)+ ", stn = "+std::to_string(el.stn)+"\n"; s += ": A = "+std::to_string(el.A) + ", Z = "+std::to_string(el.Z)+ ", stn = "+std::to_string(el.stn)+"\n";
} }
return s; return s;
}; };