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
Merge requests
!6
3279
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
3279
3279
into
master
Overview
0
Commits
8
Pipelines
0
Changes
115
Merged
Alexander Diewald
requested to merge
3279
into
master
6 years ago
Overview
0
Commits
8
Pipelines
0
Changes
115
Expand
Intermediate merge to avoid excessive merge conflicts when performing more cleanup tasks.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
1f34e2b0
8 commits,
6 years ago
115 files
+
319
−
3768
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
115
Search (e.g. *.vue) (Ctrl+P)
org.fortiss.af3.exploration.alg/src/org/fortiss/af3/exploration/alg/dse/backend/opt4j/create/ArchitectureExplorationCreator.java deleted
100644 → 0
+
0
−
37
Options
/*-------------------------------------------------------------------------+
| Copyright 2015 fortiss GmbH |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package
org.fortiss.af3.exploration.alg.dse.backend.opt4j.create
;
import
org.fortiss.af3.exploration.alg.dse.backend.opt4j.encoding.ArchitectureExplorationEncoding
;
import
org.fortiss.af3.exploration.alg.dse.backend.opt4j.extensions.compositegene.create.CompositeCreatorBase
;
import
org.fortiss.af3.exploration.alg.dse.backend.opt4j.extensions.compositegene.genotype.ComposableGenotype
;
import
org.opt4j.core.problem.Creator
;
/**
* {@link Creator} of the {@link ArchitectureExplorationEncoding} of an architectural exploration
* problem, that consists of sub encodings. Refer to {@link ComposableGenotype} for further
* documentation.
*
* @author diewald
*/
public
class
ArchitectureExplorationCreator
extends
CompositeCreatorBase
<
ArchitectureExplorationEncoding
>
{
/** {@inheritDoc} */
@Override
public
ArchitectureExplorationEncoding
createComposite
()
{
return
new
ArchitectureExplorationEncoding
();
}
}
Loading