Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AMOEBA3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
SMAC
Learning Group
AMOEBA3
Commits
568d4c1d
Commit
568d4c1d
authored
5 years ago
by
BrunoDatoMeneses
Browse files
Options
Downloads
Patches
Plain Diff
FIX: multiUi amoeba constructor errores
parent
ae44393f
Branches
Branches containing commit
No related tags found
1 merge request
!4
Exp rein
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
AMOEBAonAMAK/src/experiments/TestingMain.java
+1
-1
1 addition, 1 deletion
AMOEBAonAMAK/src/experiments/TestingMain.java
AMOEBAonAMAK/src/gui/saveExplorer/SaveExplorer.java
+1
-1
1 addition, 1 deletion
AMOEBAonAMAK/src/gui/saveExplorer/SaveExplorer.java
with
2 additions
and
2 deletions
AMOEBAonAMAK/src/experiments/TestingMain.java
+
1
−
1
View file @
568d4c1d
...
...
@@ -22,7 +22,7 @@ public class TestingMain {
StudiedSystem
studiedSystem
=
new
NDimCube
(
50.0
,
3
);
// create the amoeba
// Make sure the path to the config file is correct.
AMOEBA
amoeba
=
new
AMOEBA
(
"resources/threeDimensionsLauncher.xml"
,
studiedSystem
);
AMOEBA
amoeba
=
new
AMOEBA
(
null
,
null
,
"resources/threeDimensionsLauncher.xml"
,
studiedSystem
);
amoeba
.
saver
=
new
SaveHelperDummy
();
// a window should have appeared, allowing you to control and visualize the amoeba.
...
...
This diff is collapsed.
Click to expand it.
AMOEBAonAMAK/src/gui/saveExplorer/SaveExplorer.java
+
1
−
1
View file @
568d4c1d
...
...
@@ -257,7 +257,7 @@ public class SaveExplorer extends VBox {
*/
public
static
void
main
(
String
[]
args
)
throws
ClassNotFoundException
,
IOException
{
System
.
out
.
println
(
"New AMOEBA launched."
);
AMOEBA
amoeba
=
new
AMOEBA
(
args
[
0
],
(
StudiedSystem
)
SerializeBase64
.
deserialize
(
args
[
1
]));
AMOEBA
amoeba
=
new
AMOEBA
(
null
,
null
,
args
[
0
],
(
StudiedSystem
)
SerializeBase64
.
deserialize
(
args
[
1
]));
//amoeba.allowGraphicalScheduler(false);
for
(
Percept
p
:
amoeba
.
getPercepts
())
{
p
.
setValue
(
amoeba
.
getPerceptions
(
p
.
getName
()));
...
...
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