Changeset 5eb05a for molecuilder/src/builder.cpp
- Timestamp:
- May 26, 2008, 10:52:00 AM (17 years ago)
- Children:
- 71dc4e
- Parents:
- ccd028
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/builder.cpp
rccd028 r5eb05a 931 931 cout << Verbose(0) << "Creating connection matrix..." << endl; 932 932 start = clock(); 933 mol->CreateAdjacencyList((ofstream *)&cout, atof(argv[argptr++]) );933 mol->CreateAdjacencyList((ofstream *)&cout, atof(argv[argptr++]), configuration.GetIsAngstroem()); 934 934 cout << Verbose(0) << "Fragmenting molecule with current connection matrix ..." << endl; 935 935 if (mol->first->next != mol->last) { … … 1116 1116 } 1117 1117 if (mol->first->next != mol->last) // if connect matrix is present already, redo it 1118 mol->CreateAdjacencyList((ofstream *)&cout, mol->BondDistance );1118 mol->CreateAdjacencyList((ofstream *)&cout, mol->BondDistance, configuration.GetIsAngstroem()); 1119 1119 // free memory 1120 1120 delete[](Elements); … … 1159 1159 cin >> tmp1; 1160 1160 start = clock(); 1161 mol->CreateAdjacencyList((ofstream *)&cout, tmp1 );1161 mol->CreateAdjacencyList((ofstream *)&cout, tmp1, configuration.GetIsAngstroem()); 1162 1162 //mol->CreateListOfBondsPerAtom((ofstream *)&cout); 1163 1163 Subgraphs = mol->DepthFirstSearchAnalysis((ofstream *)&cout, false, MinimumRingSize);
Note:
See TracChangeset
for help on using the changeset viewer.