Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
docking
ocladock
Commits
01a20022
Commit
01a20022
authored
Dec 18, 2018
by
Leonardo Solis
Browse files
corrected minor hardcoded code
parent
bf98fbb6
Changes
1
Hide whitespace changes
Inline
Side-by-side
host/src/processligand.cpp
View file @
01a20022
...
...
@@ -81,7 +81,11 @@ int init_liganddata(const char* ligfilename,
if
(
new_type
==
1
)
//if new type, copying string...
{
if
(
num_of_atypes
>=
14
)
//checking if atom type number doesn't exceed 14
//checking if atom type number doesn't exceed 14
#if 0
if (num_of_atypes >= 14)
#endif
if
(
num_of_atypes
>=
MAX_NUM_OF_ATYPES
)
{
printf
(
"Error: too many types of ligand atoms!
\n
"
);
return
1
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment