Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TAM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIP
Labrador
TAM
Merge requests
!52
Something went wrong while fetching comments. Please try again.
Scheduler initial
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Closed
Scheduler initial
scheduler_initial
into
scheduler
Overview
21
Commits
26
Pipelines
1
Changes
18
Closed
Scheduler initial
Otto Visser
requested to merge
scheduler_initial
into
scheduler
May 31, 2018
Overview
21
Commits
26
Pipelines
1
Changes
18
Initial setup of the scheduler. Features:
Matrix/assignment/studentscheduleinformation classes for representing the input and output data of the scheduling algorithm
Extendable scheduler setup
Gurobi-powered LP scheduling algorithm
Structure setup for getting database input into scheduler-ready format
Edited
Jun 1, 2018
by
Otto Visser
0
0
Merge request reports
Compare
scheduler
scheduler (base)
and
latest version
latest version
3c00c7b8
26 commits,
Jun 1, 2018
18 files
+
1565
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
18
config/checkstyle/checkstyle.xml
+
6
−
3
View file @ 3c00c7b8
Show full file
@@ -53,8 +53,9 @@
<property
name=
"maximum"
value=
"0"
/>
<property
name=
"message"
value=
"Line has trailing spaces."
/>
</module>
<module
name=
"NewlineAtEndOfFile"
/>
<module
name=
"NewlineAtEndOfFile"
>
<property
name=
"lineSeparator"
value=
"lf_cr_crlf"
/>
</module>
<!-- Checks for Headers -->
<!-- See http://checkstyle.sf.net/config_header.html -->
<!-- <module name="Header"> -->
@@ -87,7 +88,9 @@
<!-- Checks for imports -->
<!-- See http://checkstyle.sf.net/config_import.html -->
<module
name=
"AvoidStarImport"
/>
<module
name=
"AvoidStarImport"
>
<property
name=
"excludes"
value=
"gurobi"
/>
</module>
<module
name=
"IllegalImport"
/>
<!-- defaults to sun.* packages -->
<module
name=
"RedundantImport"
/>
<module
name=
"UnusedImports"
>
Loading