Skip to content

Commit b98f922

Browse files
committed
Apply Mozilla License
1 parent ffc2368 commit b98f922

22 files changed

+373
-126
lines changed

LICENSE

+373
Large diffs are not rendered by default.

src/com/dalton/ChessEngine/Bishop.java

-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
/*
2-
Project: Chess Engine
3-
File: Bishop.java
4-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved
5-
*/
61
package com.dalton.ChessEngine;
72

83
import java.util.ArrayList;

src/com/dalton/ChessEngine/Main.java

-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
/*
2-
Project: Chess Engine
3-
File: Main.java
4-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved
5-
*/
61
package com.dalton.ChessEngine;
72
/**
83
* The central boot loading class for this project

src/com/dalton/ChessEngine/Move.java

-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
/*
2-
Project: Chess Engine
3-
File: Move.java
4-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved
5-
*/
61
package com.dalton.ChessEngine;
72

83
import java.util.ArrayList;

src/com/dalton/ChessEngine/MoveGenerator.java

-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
/*
2-
Project: Chess Engine
3-
File: MoveGenerator.java
4-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved
5-
*/
61
package com.dalton.ChessEngine;
72

83
import static com.dalton.ChessEngine.Types.*;

src/com/dalton/ChessEngine/Pawn.java

-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
/*
2-
Project: Chess Engine
3-
File: Pawn.java
4-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved
5-
*/
61
package com.dalton.ChessEngine;
72

83
import java.util.ArrayList;

src/com/dalton/ChessEngine/PieceCode.java

-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
/*
2-
File: PieceCode.java
3-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved.
4-
License is hereby granted to The Kings University to store, compile, run, and display this file for grading and educational purposes.
5-
Ownership is to be held by the primary author.
6-
Licence is granted to the secondary members as noted in the Authors.md file for display, running, compiling, and modification for use in their future projects. Just keep my name on functions I wrote.
7-
*/
8-
91
package com.dalton.ChessEngine;
102

113
import static com.dalton.ChessEngine.Types.*;

src/com/dalton/ChessEngine/Queen.java

-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
/*
2-
Project: Chess Engine
3-
File: Queen.java
4-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved
5-
*/
61
package com.dalton.ChessEngine;
72

83
import java.util.ArrayList;

src/com/dalton/ChessEngine/Rook.java

-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
/*
2-
Project: Chess Engine
3-
File: Rook.java
4-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved
5-
*/
61
package com.dalton.ChessEngine;
72

83
import java.util.ArrayList;

src/com/dalton/ChessEngine/Types.java

-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
/*
2-
Project: Chess Engine
3-
File: Types.java
4-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved
5-
*/
61
package com.dalton.ChessEngine;
72

83
/**

test/com/dalton/ChessEngine/BishopTest.java

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
File: BishopTest.java
3-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved.
4-
*/
51
package com.dalton.ChessEngine;
62

73
import org.junit.After;

test/com/dalton/ChessEngine/BoardTest.java

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
/*
2-
File: BishopTest.java
3-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved.
4-
License is hereby granted to The Kings University to store, compile, run, and display this file for grading and educational purposes.
5-
Ownership is to be held by the primary author.
6-
Licence is granted to the secondary members as noted in the Authors.md file for display, running, compiling, and modification for use in their future projects. Just keep my name on functions I wrote.
7-
*/
81
package com.dalton.ChessEngine;
92

103
import org.junit.After;

test/com/dalton/ChessEngine/CoordTest.java

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
/*
2-
File: CoordTest.java
3-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved.
4-
License is hereby granted to The Kings University to store, compile, run, and display this file for grading and educational purposes.
5-
Ownership is to be held by the primary author.
6-
Licence is granted to the secondary members as noted in the Authors.md file for display, running, compiling, and modification for use in their future projects. Just keep my name on functions I wrote.
7-
*/
81
package com.dalton.ChessEngine;
92

103
import org.junit.After;

test/com/dalton/ChessEngine/KingTest.java

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
File: KingTest.java
3-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved.
4-
*/
51
package com.dalton.ChessEngine;
62
import org.junit.After;
73
import org.junit.Assert;

test/com/dalton/ChessEngine/KnightTest.java

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
/*
2-
File: KnightTest.java
3-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved.
4-
License is hereby granted to The Kings University to store, compile, run, and display this file for grading and educational purposes.
5-
Ownership is to be held by the primary author.
6-
Licence is granted to the secondary members as noted in the Authors.md file for display, running, compiling, and modification for use in their future projects. Just keep my name on functions I wrote.
7-
*/
81
package com.dalton.ChessEngine;
92
import org.junit.After;
103
import org.junit.Before;

test/com/dalton/ChessEngine/MoveTest.java

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
/*
2-
File: MoveTest.java
3-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved.
4-
License is hereby granted to The Kings University to store, compile, run, and display this file for grading and educational purposes.
5-
Ownership is to be held by the primary author.
6-
Licence is granted to the secondary members as noted in the Authors.md file for display, running, compiling, and modification for use in their future projects. Just keep my name on functions I wrote.
7-
*/
81
package com.dalton.ChessEngine;
92
import org.junit.After;
103
import org.junit.Before;

test/com/dalton/ChessEngine/PawnTest.java

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
/*
2-
File: PawnTest.java
3-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved.
4-
License is hereby granted to The Kings University to store, compile, run, and display this file for grading and educational purposes.
5-
Ownership is to be held by the primary author.
6-
Licence is granted to the secondary members as noted in the Authors.md file for display, running, compiling, and modification for use in their future projects. Just keep my name on functions I wrote.
7-
*/
81
package com.dalton.ChessEngine;
92
import org.junit.After;
103
import org.junit.Before;

test/com/dalton/ChessEngine/PieceTests.java

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
/*
2-
File: PieceTest.java
3-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved.
4-
License is hereby granted to The Kings University to store, compile, run, and display this file for grading and educational purposes.
5-
Ownership is to be held by the primary author.
6-
Licence is granted to the secondary members as noted in the Authors.md file for display, running, compiling, and modification for use in their future projects. Just keep my name on functions I wrote.
7-
*/
81
package com.dalton.ChessEngine;
92
import org.junit.After;
103
import org.junit.Before;

test/com/dalton/ChessEngine/QueenTest.java

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
/*
2-
File: QueenTest.java
3-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved.
4-
License is hereby granted to The Kings University to store, compile, run, and display this file for grading and educational purposes.
5-
Ownership is to be held by the primary author.
6-
Licence is granted to the secondary members as noted in the Authors.md file for display, running, compiling, and modification for use in their future projects. Just keep my name on functions I wrote.
7-
*/
81
package com.dalton.ChessEngine;
92

103
import org.junit.After;

test/com/dalton/ChessEngine/RookTest.java

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
/*
2-
File: RookTest.java
3-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved.
4-
License is hereby granted to The Kings University to store, compile, run, and display this file for grading and educational purposes.
5-
Ownership is to be held by the primary author.
6-
Licence is granted to the secondary members as noted in the Authors.md file for display, running, compiling, and modification for use in their future projects. Just keep my name on functions I wrote.
7-
*/
81
package com.dalton.ChessEngine;
92
import org.junit.After;
103
import org.junit.Before;

test/com/dalton/ChessEngine/TypesTest.java

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
/*
2-
File: TypesTest.java
3-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved.
4-
License is hereby granted to The Kings University to store, compile, run, and display this file for grading and educational purposes.
5-
Ownership is to be held by the primary author.
6-
Licence is granted to the secondary members as noted in the Authors.md file for display, running, compiling, and modification for use in their future projects. Just keep my name on functions I wrote.
7-
*/
81
package com.dalton.ChessEngine;
92
import org.junit.After;
103
import org.junit.Before;

test/com/dalton/ChessEngine/UtilsForTests.java

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
/*
2-
File: UtilsForTests.java
3-
Copyright (C) 2023 Dalton Herrewynen. All Rights Reserved.
4-
License is hereby granted to The Kings University to store, compile, run, and display this file for grading and educational purposes.
5-
Ownership is to be held by the primary author.
6-
Licence is granted to the secondary members as noted in the Authors.md file for display, running, compiling, and modification for use in their future projects. Just keep my name on functions I wrote.
7-
*/
81
package com.dalton.ChessEngine;
92
import org.junit.Ignore;
103

0 commit comments

Comments
 (0)