Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - znyak

#1
Programming Help / Re: FET Algorithm
March 11, 2018, 10:55:49 AM
As Described in the Last step of Algorithm

2 g) If we are at level 0, and we had no success in placing A_i, place it like in steps (2 b) and (2 c), but without recursion. We have now 3 - 1 = 2 more activities to place. Go to step (2) (some methods to avoid cycling are used here).

We couldn't get what this exactly mean?

We couldn't decide where to put the conflicts generated after placing A_i as described by step 2 g). Should We add these generated conflicts to the original list of Activities in newly sorted order and repeat the algorithm from starting?

#2
Programming Help / FET Algorithm
March 07, 2018, 08:45:17 PM
As mentioned in algorithm " Try to place each activity (A_i) in an allowed time slot" ,but how do we define these time slots programmatically? do we use Arrays for that?
and how can I see its implementation in FET source code?

I'm using FET-5.35.3.
Thank you :)