I am trying to find all Hamiltonian Cycles on all Bi-Connected Chordal graphs. I have been able to generate all the graphs that I need up to 14 vertices. But now I have to search all of those graphs for the Hamiltonian Graphs.
Since the problem is NP-Complete I know there isn't any other way other than to brute force it (unless there is a better algorithm out there that I am not aware of). But I know the computations may take weeks or even longer to search all of those graphs before we get anything to research on.
So the question is, would it be faster to try and compute it on my GPU? I have a 1080ti FTW in my labs computer. Would it be worth it to try and look into trying to compute it on my GPU? If so, where should I begin looking?