MCPcopy Create free account
hub / github.com/OpenSees/OpenSees / reliability

Function reliability

SRC/tcl/commands.cpp:1287–1302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1285#ifdef _RELIABILITY
1286
1287int
1288reliability(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv)
1289{
1290 if (theReliabilityBuilder == 0) {
1291
1292 theReliabilityBuilder = new TclReliabilityBuilder(theDomain,interp);
1293 if (theReliabilityBuilder == 0) {
1294 opserr << "Failed to create reliability domain" << endln;
1295 return TCL_ERROR;
1296 }
1297 OPS_SetReliabilityDomain(theReliabilityBuilder->getReliabilityDomain());
1298 return TCL_OK;
1299 }
1300 else
1301 return TCL_ERROR;
1302}
1303
1304
1305int

Callers

nothing calls this directly

Calls 2

OPS_SetReliabilityDomainFunction · 0.85
getReliabilityDomainMethod · 0.45

Tested by

no test coverage detected