-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changing internal components in TournamentManager * Implement new round-robin classes * Seprate MatchCreater and MatchScheduler
- Loading branch information
Showing
21 changed files
with
1,745 additions
and
629 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
TournamentManager/TournamentManager/Plan/ClearMatchDates.cs
This file was deleted.
Oops, something went wrong.
126 changes: 0 additions & 126 deletions
126
TournamentManager/TournamentManager/Plan/CombinationGroupOptimizer.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
namespace TournamentManager.Plan; | ||
|
||
/// <summary> | ||
/// Specifies the type of the leg to create match combinations of a round | ||
/// </summary> | ||
public enum LegType | ||
{ | ||
/// <summary> | ||
/// The first leg. | ||
/// </summary> | ||
First = 1, | ||
/// <summary> | ||
/// The return leg. | ||
/// </summary> | ||
Return | ||
} |
Oops, something went wrong.