| 2430 | } |
| 2431 | |
| 2432 | int OPS_setPrecision() |
| 2433 | { |
| 2434 | if (OPS_GetNumRemainingInputArgs() < 1) { |
| 2435 | opserr << "WARNING setPrecision precision? - no precision value supplied\n"; |
| 2436 | return -1; |
| 2437 | } |
| 2438 | int precision; |
| 2439 | int numdata = 1; |
| 2440 | if (OPS_GetIntInput(&numdata, &precision) < 0) { |
| 2441 | opserr << "WARNING setPrecision precision? - error reading precision value supplied\n"; |
| 2442 | return -1; |
| 2443 | } |
| 2444 | opserr.setPrecision(precision); |
| 2445 | |
| 2446 | return 0; |
| 2447 | } |
| 2448 | |
| 2449 | int OPS_getEleTags() |
| 2450 | { |
no test coverage detected