Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs2-23wi
lab08-new
Commits
3ca57bfe
Commit
3ca57bfe
authored
2 years ago
by
James C Bowden
Browse files
Options
Download
Email Patches
Plain Diff
update and rename lab
parent
844c09d6
master
No related merge requests found
Pipeline
#78659
failed with stage
Changes
8
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
.gitlab-ci.yml
+1
-1
.gitlab-ci.yml
.idea/misc.xml
+1
-1
.idea/misc.xml
.idea/modules.xml
+1
-1
.idea/modules.xml
.idea/runConfigurations/A_Tests.xml
+1
-1
.idea/runConfigurations/A_Tests.xml
.idea/vcs.xml
+6
-0
.idea/vcs.xml
lab06.iml
+0
-0
lab06.iml
src/edu/caltech/cs2/lab06/PebblingGraph.java
+2
-2
src/edu/caltech/cs2/lab06/PebblingGraph.java
tests/edu/caltech/cs2/lab06/PebblesTests.java
+2
-2
tests/edu/caltech/cs2/lab06/PebblesTests.java
with
14 additions
and
8 deletions
+14
-8
.gitlab-ci.yml
View file @
3ca57bfe
A
:
script
:
/testers/cs2/lab0
8
/suite/test
script
:
/testers/cs2/lab0
6
/suite/test
This diff is collapsed.
Click to expand it.
.idea/misc.xml
View file @
3ca57bfe
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1
1
"
project-jdk-name=
"1
1
"
project-jdk-type=
"JavaSDK"
>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1
9"
default=
"true
"
project-jdk-name=
"1
9
"
project-jdk-type=
"JavaSDK"
>
<output
url=
"file://$PROJECT_DIR$/out"
/>
</component>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.idea/modules.xml
View file @
3ca57bfe
...
...
@@ -2,7 +2,7 @@
<project
version=
"4"
>
<component
name=
"ProjectModuleManager"
>
<modules>
<module
fileurl=
"file://$PROJECT_DIR$/lab0
8
.iml"
filepath=
"$PROJECT_DIR$/lab0
8
.iml"
/>
<module
fileurl=
"file://$PROJECT_DIR$/lab0
6
.iml"
filepath=
"$PROJECT_DIR$/lab0
6
.iml"
/>
</modules>
</component>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.idea/runConfigurations/A_Tests.xml
View file @
3ca57bfe
<component
name=
"ProjectRunConfigurationManager"
>
<configuration
default=
"false"
name=
"A Tests"
type=
"JUnit"
factoryName=
"JUnit"
>
<module
name=
"lab0
8
"
/>
<module
name=
"lab0
6
"
/>
<option
name=
"MAIN_CLASS_NAME"
value=
""
/>
<option
name=
"METHOD_NAME"
value=
""
/>
<option
name=
"TEST_OBJECT"
value=
"tags"
/>
...
...
This diff is collapsed.
Click to expand it.
.idea/vcs.xml
0 → 100644
View file @
3ca57bfe
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"VcsDirectoryMappings"
>
<mapping
directory=
""
vcs=
"Git"
/>
</component>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
lab0
8
.iml
→
lab0
6
.iml
View file @
3ca57bfe
File moved
This diff is collapsed.
Click to expand it.
src/edu/caltech/cs2/lab0
8
/PebblingGraph.java
→
src/edu/caltech/cs2/lab0
6
/PebblingGraph.java
View file @
3ca57bfe
package
edu.caltech.cs2.lab0
8
;
package
edu.caltech.cs2.lab0
6
;
import
java.util.*
;
import
java.util.stream.Collectors
;
...
...
@@ -42,6 +42,6 @@ public class PebblingGraph {
}
public
List
<
Integer
>
toposort
()
{
return
n
ull
;
return
n
ew
ArrayList
<
Integer
>()
;
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
tests/edu/caltech/cs2/lab0
8
/PebblesTests.java
→
tests/edu/caltech/cs2/lab0
6
/PebblesTests.java
View file @
3ca57bfe
package
edu.caltech.cs2.lab0
8
;
package
edu.caltech.cs2.lab0
6
;
import
org.junit.jupiter.api.*
;
import
edu.caltech.cs2.lab0
8
.PebblingGraph.PebblingNode
;
import
edu.caltech.cs2.lab0
6
.PebblingGraph.PebblingNode
;
import
org.junit.jupiter.params.ParameterizedTest
;
import
org.junit.jupiter.params.provider.CsvSource
;
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help