-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an option to turn-off disconnected components calculation #74
Add an option to turn-off disconnected components calculation #74
Conversation
Is the warning that there are many disconnected components? |
For our chimera case (E=1.69Bn), it prints something like this and take a very long time
|
Yes, it takes a long time if there are a large number of disconnected components. |
I wanted to say that having no warning at all is also not a good option.
… On 15 Apr 2024, at 21:25, Thilina Ratnayaka ***@***.***> wrote:
Is the warning that there are many disconnected components?
Yes, it takes a long time if there are a large number of disconnected components.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.
|
What would be a good compromise? Shall we enable finding disconnected components |
Yeah or we only turn it on for the first N levels. |
This takes a very long time when the number of disconnected compnents are in the order of 100.
ae540bf
to
6a9a576
Compare
@stgeke : I added an option to turn-off finding disconnected components if necessary. User can do: export PARRSB_FIND_NUM_COMPONENTS=0 in order to turn it off. Or this can be set in in the |
I find the name a bit confusing. How about renaming it to |
031acc8
to
2505e33
Compare
2505e33
to
979b125
Compare
Stop finding the number of disconnected components in the generated partitions.
This takes a very long time when the number of disconnected components are in the
order of 100.
TODO