MCPcopy Create free account
hub / github.com/Singular/Singular / register_dyn_module

Function register_dyn_module

Singular/iplib.cc:1173–1178  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1171}
1172
1173void register_dyn_module(char *fullname, void * handle) {
1174 std::string fname = fullname;
1175 if (dyn_modules == NULL)
1176 dyn_modules = new std::map<std::string, void *>();
1177 dyn_modules->insert(std::pair<std::string, void *>(fname, handle));
1178}
1179
1180void close_all_dyn_modules() {
1181 for (std::map<std::string, void *>::iterator it = dyn_modules->begin();

Callers 1

load_modules_auxFunction · 0.85

Calls 1

insertMethod · 0.45

Tested by

no test coverage detected