-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change to semantics of RandomPicker's constructor
- Loading branch information
1 parent
56aacf2
commit ac41b7b
Showing
5 changed files
with
55 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
*.swp | ||
*.bak | ||
*.old | ||
|
||
*.zip | ||
# MacOS !#@$ files | ||
.DS_Store | ||
|
||
|
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,39 @@ | ||
/* | ||
Synthia, a data structure generator | ||
Copyright (C) 2019-2020 Laboratoire d'informatique formelle | ||
Université du Québec à Chicoutimi, Canada | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Lesser General Public License as published | ||
by the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
package ca.uqac.lif.synthia; | ||
|
||
/** | ||
* Dummy main file. This file, when run, only displays a message | ||
* on the console. | ||
*/ | ||
public class Main | ||
{ | ||
private Main() | ||
{ | ||
super(); | ||
throw new UnsupportedOperationException("This class cannot be instantiated"); | ||
} | ||
|
||
public static void main(String[] args) | ||
{ | ||
System.out.println("Synthia - A data structure generator"); | ||
System.out.println("(C) 2019-2020 Laboratoire d'informatique formelle"); | ||
System.out.println("Université du Québec à Chicoutimi, Canada"); | ||
} | ||
} |
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
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