[86] | 1 | // Copyright 2015 Georg-August-Universität Göttingen, Germany
|
---|
[41] | 2 | //
|
---|
| 3 | // Licensed under the Apache License, Version 2.0 (the "License");
|
---|
| 4 | // you may not use this file except in compliance with the License.
|
---|
| 5 | // You may obtain a copy of the License at
|
---|
| 6 | //
|
---|
| 7 | // http://www.apache.org/licenses/LICENSE-2.0
|
---|
| 8 | //
|
---|
| 9 | // Unless required by applicable law or agreed to in writing, software
|
---|
| 10 | // distributed under the License is distributed on an "AS IS" BASIS,
|
---|
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
---|
| 12 | // See the License for the specific language governing permissions and
|
---|
| 13 | // limitations under the License.
|
---|
| 14 |
|
---|
[39] | 15 | package de.ugoe.cs.cpdp.execution;
|
---|
| 16 |
|
---|
| 17 | import de.ugoe.cs.cpdp.ExperimentConfiguration;
|
---|
| 18 | import de.ugoe.cs.cpdp.versions.SoftwareVersion;
|
---|
| 19 |
|
---|
| 20 | /**
|
---|
[67] | 21 | * <p>
|
---|
| 22 | * Implements a cross project experiment where all versions not from the same project are used
|
---|
| 23 | * together with all older version from the test product.
|
---|
| 24 | * </p>
|
---|
[39] | 25 | *
|
---|
| 26 | * @author Steffen Herbold
|
---|
| 27 | */
|
---|
[67] | 28 | public class RelaxedCrossProjectExperiment extends AbstractCrossProjectExperiment {
|
---|
[39] | 29 |
|
---|
[41] | 30 | /**
|
---|
| 31 | * Constructor. Creates a new experiment based on a configuration.
|
---|
| 32 | *
|
---|
| 33 | * @param config
|
---|
| 34 | * configuration of the experiment
|
---|
| 35 | */
|
---|
| 36 | public RelaxedCrossProjectExperiment(ExperimentConfiguration config) {
|
---|
[67] | 37 | super(config);
|
---|
[41] | 38 | }
|
---|
| 39 |
|
---|
[67] | 40 | /*
|
---|
| 41 | * (non-Javadoc)
|
---|
[41] | 42 | *
|
---|
[67] | 43 | * @see
|
---|
| 44 | * de.ugoe.cs.cpdp.execution.AbstractCrossProjectExperiment#isTrainingVersion(de.ugoe.cs.cpdp.
|
---|
| 45 | * versions.SoftwareVersion, de.ugoe.cs.cpdp.versions.SoftwareVersion)
|
---|
[41] | 46 | */
|
---|
| 47 | @Override
|
---|
[67] | 48 | protected boolean isTrainingVersion(SoftwareVersion trainingVersion,
|
---|
| 49 | SoftwareVersion testVersion)
|
---|
| 50 | {
|
---|
| 51 | if (trainingVersion.getProject().equals(testVersion.getProject())) {
|
---|
| 52 | if (trainingVersion.compareTo(testVersion) < 0) {
|
---|
| 53 | // only add if older
|
---|
| 54 | return true;
|
---|
[41] | 55 | }
|
---|
| 56 | }
|
---|
[67] | 57 | else {
|
---|
| 58 | return true;
|
---|
[41] | 59 | }
|
---|
[67] | 60 | return false;
|
---|
[41] | 61 | }
|
---|
[39] | 62 | }
|
---|