Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlgoTP03
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TOUMERT Said
AlgoTP03
Commits
de093b6a
Commit
de093b6a
authored
2 years ago
by
Luigi Santocanale
Browse files
Options
Downloads
Patches
Plain Diff
Labyrinth deplacé
parent
f8d92e03
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.idea/runConfigurations.xml
+10
-0
10 additions, 0 deletions
.idea/runConfigurations.xml
src/GraphClasses/Grid.java
+2
-3
2 additions, 3 deletions
src/GraphClasses/Grid.java
src/Graphics/Labyrinth.java
+2
-1
2 additions, 1 deletion
src/Graphics/Labyrinth.java
src/Main.java
+2
-1
2 additions, 1 deletion
src/Main.java
with
16 additions
and
5 deletions
.idea/runConfigurations.xml
0 → 100644
+
10
−
0
View file @
de093b6a
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"RunConfigurationProducerService"
>
<option
name=
"ignoredProducers"
>
<set>
<option
value=
"com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer"
/>
</set>
</option>
</component>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/GraphClasses/Grid.java
+
2
−
3
View file @
de093b6a
package
GraphClasses
;
import
Graph.*
;
import
java.util.BitSet
;
...
...
@@ -7,8 +6,8 @@ import java.util.BitSet;
public
class
Grid
{
int
width
;
int
height
;
public
int
width
;
public
int
height
;
int
maxVertex
;
public
Graph
graph
;
...
...
This diff is collapsed.
Click to expand it.
src/Graph
Classe
s/Labyrinth.java
→
src/Graph
ic
s/Labyrinth.java
+
2
−
1
View file @
de093b6a
package
Graph
Classe
s
;
package
Graph
ic
s
;
import
Graph.*
;
import
GraphClasses.*
;
import
java.awt.Color
;
...
...
This diff is collapsed.
Click to expand it.
src/Main.java
+
2
−
1
View file @
de093b6a
import
Graph.*
;
import
GraphClasses.*
;
import
RandomTreeAlgos.BreadthFirstSearch
;
import
Graphics.*
;
import
java.io.IOException
;
import
java.util.ArrayList
;
...
...
@@ -34,7 +35,7 @@ public class Main {
}
private
static
Graph
chooseFromGraphFamily
()
{
// Parametriser ici cette fonction af
o
n de pouvoir choisir
// Parametriser ici cette fonction af
i
n de pouvoir choisir
// quelle classe de graohe utiliser
grid
=
new
Grid
(
1920
/
11
,
1080
/
11
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment