Skip to content

Commit 03ac0af

Browse files
wojdyrclaude
andcommitted
drg: re-enable angle table loading
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0414da0 commit 03ac0af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/acedrg_tables.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ void AcedrgTables::load_tables(const std::string& tables_dir) {
113113

114114
// Load HRS (summary) tables
115115
load_bond_hrs(tables_dir + "/allOrgBondsHRS.table");
116-
//load_angle_hrs(tables_dir + "/allOrgAnglesHRS.table"); // temporarily disabled
116+
load_angle_hrs(tables_dir + "/allOrgAnglesHRS.table");
117117

118118
// Load element+hybridization fallback
119119
load_en_bonds(tables_dir + "/allOrgBondEN.table");
@@ -132,8 +132,8 @@ void AcedrgTables::load_tables(const std::string& tables_dir) {
132132
load_atom_type_codes(tables_dir + "/allAtomTypesFromMolsCoded.list");
133133
load_bond_index(tables_dir + "/allOrgBondTables/bond_idx.table");
134134
load_bond_tables(tables_dir + "/allOrgBondTables");
135-
//load_angle_index(tables_dir + "/allOrgAngleTables/angle_idx.table"); // temporarily disabled
136-
//load_angle_tables(tables_dir + "/allOrgAngleTables"); // temporarily disabled
135+
load_angle_index(tables_dir + "/allOrgAngleTables/angle_idx.table");
136+
load_angle_tables(tables_dir + "/allOrgAngleTables");
137137
load_pep_tors(tables_dir + "/pep_tors.table");
138138

139139
tables_loaded_ = true;

0 commit comments

Comments
 (0)