Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
exploration-alg
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
Container Registry
Model registry
Operate
Environments
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
af3
exploration-alg
Commits
d2af68a0
Commit
d2af68a0
authored
8 years ago
by
Alexander Diewald
Browse files
Options
Downloads
Patches
Plain Diff
- Forward Exceptions thrown by the system model adapter.
parent
d535b917
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
org.fortiss.af3.exploration.alg/trunk/src/org/fortiss/af3/exploration/alg/contribution/Opt4JDseBackend.java
+5
-15
5 additions, 15 deletions
...iss/af3/exploration/alg/contribution/Opt4JDseBackend.java
with
5 additions
and
15 deletions
org.fortiss.af3.exploration.alg/trunk/src/org/fortiss/af3/exploration/alg/contribution/Opt4JDseBackend.java
+
5
−
15
View file @
d2af68a0
...
...
@@ -77,21 +77,11 @@ public class Opt4JDseBackend implements IDseBackend {
// Input to DSE: {@link SystemModelAdapter} and {@link DesignSpaceExploration}.
// SystemModelAdapter systemModelAdapter;
try
{
systemModelAdapter
=
new
AF3SystemModelAdapter
(
parameters
.
getInputParameter
(
ComponentArchitecture
.
class
),
parameters
.
getInputParameter
(
PlatformArchitecture
.
class
),
parameters
.
getInputParameter
(
SystemParameterContainer
.
class
));
}
catch
(
Exception
ex
)
{
// ExplorationUiUtil
// .showExceptionErrorAsync(
// "Error setting up the DSE",
// "Could not transform the input models to a valid input for the DSE. Please check the Component Architecture, Platform Architecture, and referenced models.",
// ex);
ex
.
printStackTrace
();
return
Optional
.
empty
();
}
systemModelAdapter
=
new
AF3SystemModelAdapter
(
parameters
.
getInputParameter
(
ComponentArchitecture
.
class
),
parameters
.
getInputParameter
(
PlatformArchitecture
.
class
),
parameters
.
getInputParameter
(
SystemParameterContainer
.
class
));
try
{
Explorer
explorer
=
new
Explorer
();
...
...
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