#Workout Plan Algorithm

13 messages · Page 1 of 1 (latest)

wide matrix
#

This is more of a design question a c++ question. Here are my specs.

grizzled summitBOT
#

When your question is answered use !solved to mark the question as resolved.

Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question use !howto ask.

wide matrix
#

I'm trying to design an algorithm to create gym splits based on a few parameters.

#

I'm kind of clueless as of how to tackle this problem.

#

Initially my thought was to model this as a Constrain satisfaction problem (and use something like prolog).

#

But it's way more complicated than what i expected.

#

So i thought about doing something like a greedy search, but i feel like i'm not going in the right direction.

deep barn
#

you don't have to use prolog to solve constraint satisfaction problems. From a very quick look at it, this sounds like it would be solvable with integer linear programming

#

so my first attempt would be to use an existing ILP library

wide matrix
#

should i use python or c++ still?

deep barn
#

I'd say whatever you're more comfartably with and what's supported by the framework you choose to use