Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
FIC_DK_P GA Solving
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
6
Issues
6
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
M3TAL
FIC_DK_P GA Solving
Commits
766f62dd
Commit
766f62dd
authored
May 14, 2020
by
Alexis Lebis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add explanation of non promise regarding competencyCatalogue magnitude
parent
1fc2f9dd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
problem.h
src/model/problem.h
+4
-1
No files found.
src/model/problem.h
View file @
766f62dd
...
...
@@ -55,7 +55,7 @@ class CSDVP
std
::
vector
<
int
>
_timeFrames
;
// Time frames stocks the VALUE, not the index
std
::
vector
<
Course
>
_availableCourses
;
std
::
vector
<
std
::
vector
<
Course
>>
_coursesSortedByTF
;
//sorted by standard index. e.g. TF[4;6] -> [0]=4; [1]=5 ; [2] = 6
std
::
vector
<
Competency
>
_availableCompentecies
;
std
::
vector
<
Competency
>
_availableCompentecies
;
//The competency's magnitude should not be used here.
///@todo implements a decay politics
//DecayPolitics
...
...
@@ -122,6 +122,9 @@ class CSDVP
const
std
::
vector
<
int
>
&
timeFrames
()
const
{
return
this
->
_timeFrames
;}
const
std
::
vector
<
Course
>
&
coursesCatalogue
()
const
{
return
this
->
_availableCourses
;}
/**CompetencyCatalogue should be used to know which competency exists in the current pb. However, it should not
* be used to know the magnitude of each comp in the pb, since these mag changes accordingly to the courses (and if it is teached or a prereq)
*/
const
std
::
vector
<
Competency
>
&
competencyCatalogue
()
const
{
return
this
->
_availableCompentecies
;}
const
std
::
vector
<
std
::
vector
<
Course
>>
&
coursesSortedByTF
()
const
{
return
this
->
_coursesSortedByTF
;}
std
::
vector
<
int
>
&
unlocked_timeFrames
(){
return
this
->
_timeFrames
;}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment