ciaranm / glasgow-subgraph-solver

A solver for subgraph isomorphism problems, based upon a series of papers by subsets of McCreesh, Prosser, and Trimble.
MIT License
62 stars 23 forks source link

build without thread #9

Closed ShunyangLi closed 2 years ago

ShunyangLi commented 2 years ago

Hi,

Is that possible to build the code without using threads?

Best

ciaranm commented 2 years ago

Probably not: we use threads for timeouts, not just for parallel search. Can I ask why you'd need to do this? Threads are a core C++ language feature these days.

ShunyangLi commented 2 years ago

Hi ciaranm,

I can not install boost libraries to enable threads since I do not have sudo permission. I tried to download boost libraries in the local machine, but it still get some errors.

Best,

ciaranm commented 2 years ago

Boost and threads aren't really related. We use Boost for command line option handling and certain data structures.