Carlos Eduardo de Andrade
Carlos Eduardo de Andrade
A simple is include 'model_class' property into BaseType's: ```python class BaseType(object): @property def model_class(self): return self.typeclass ``` But you have the recursive thing yet.
Thanks @sangaline! This looks a very nice solution indeed. In my case, I ended up breaking the query into smaller subqueries and concatenated the results. It adds some bookkeeping and...
I also second here. This functionality is just handy in many several cases. And ultimately, this is a simple vector, which should be easy to draw and scale. The px.scatter...
Thanks for reporting. I'm a little tied now, but I will check sometime soon. But I guess this is an issue with the test case itself, not the main library....
Thanks for reporting. First, a note: your compilation will fail even using C++20 because it is missing the required Clang OMP flag `-fopenmp`, which is required to compile BRKGA with...
To be sincere, this operator is just sugar. It allows us to read the configuration file more easily. Particularly, we read the maximum time from the config file, too. Such...
That's true. But I would like to keep flexibility here: the user can read or write the config from any stream, either to/from a file or to/from the standard input/output....
Thanks for reporting @AlexanderTreml. Indeed, the Python version of BRKGA-IPR is not well-tested and lags behind the C++ version, so it is nice when these bugs come around. However, I...
Thanks @marcosrobertosilva; sorry for the delay. I will take a look at this. But, generally, using the cast to guarantee the type looks better. I'm not sure it impacts the...
@marcosrobertosilva Do you mind creating a pull request, so that we can include your changes? Or, if you prefer, you can send the code to me, and I will integrate...