KD Kazarin
KD Kazarin
I have same error, db - postgres:  Config:  My docker-compose.yml: ``` # The version of the docker-compose syntax must be specified, otherwise the assembly does not work #...
The ability to create expanded hierarchical tables would be a great feature. I'll add an [example](https://tabulator.info/docs/5.5/tree) of such an implementation.
Thanks for the reply! > Dependency constraints with more than 2 variables can be chained together. The specific constraint you need will be a function of the dependencies among a,...
> Again, you have to specify the type of each dependency because it determines the signs of the coefficients, the type of inequality/equality and the value of the right hand...
> So you can see that the coefficients, inequality and RHS are dependent on the type of constraint. Thank you for your help and patience. This is my first experience...
> For the block of constraints the inequality would be
Thank you for your feedback. I was able to add the required constraint to the model (https://github.com/dirkschumacher/ompr/issues/259#issue-445883878). Here is the working code: ``` library(dplyr) library(ROI) library(ROI.plugin.symphony) library(ompr) library(ompr.roi) library(ROI.plugin.glpk) project_list...
The model generates the right solutions for my task. Perhaps I didn't describe the constraints quite correctly: ``` a + b + c + d + ... + n ==...
Your code works on this data, but I tried to add another group of interdependent projects (e and f) and the solution did not match my expectations. ``` project_list %...
> Your constraint says that projects 1:3, 5:6 are linked. Only one project of those 5 can be selected, so project 1 and project 4 which has no dependencies are...