Changeset 14193
- Timestamp:
- 07/23/16 01:37:30 (8 years ago)
- Location:
- stable
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 13499,13509,13644
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Clients.Hive.Slave.App/3.3/HeuristicLab.Clients.Hive.Slave.App-3.3.csproj
r11920 r14193 173 173 </PropertyGroup> 174 174 <PropertyGroup> 175 <PostBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 176 set ProjectDir=$(ProjectDir) 177 set SolutionDir=$(SolutionDir) 178 set Outdir=$(Outdir) 179 set Platform=$(PlatformName) 180 set Configuration=$(ConfigurationName) 181 182 call "$(SolutionDir)MergeConfigs.cmd"</PostBuildEvent> 175 <PostBuildEvent> 176 </PostBuildEvent> 183 177 </PropertyGroup> 184 178 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
stable/HeuristicLab.Clients.Hive.Slave/3.3/HeuristicLab.Clients.Hive.Slave-3.3.csproj
r11932 r14193 185 185 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 186 186 <PropertyGroup> 187 <PostBuildEvent> 188 </PostBuildEvent> 187 <PostBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 188 set ProjectDir=$(ProjectDir) 189 set SolutionDir=$(SolutionDir) 190 set Outdir=$(Outdir) 191 set Platform=$(PlatformName) 192 set Configuration=$(ConfigurationName) 193 set TargetDir=$(ProjectDir) 194 195 call "$(SolutionDir)MergeConfigs.cmd"</PostBuildEvent> 189 196 </PropertyGroup> 190 197 <PropertyGroup> -
stable/HeuristicLab.Problems.Instances.DataAnalysis
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis merged: 13644
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Vladislavleva/KotanchekFunction.cs
r14186 r14193 28 28 public class KotanchekFunction : ArtificialRegressionDataDescriptor { 29 29 30 public override string Name { get { return "Vladislavleva-1 F1(X1,X2) = exp(- (X1 - 1))² / (1.2 + (X2 -2.5)²"; } }30 public override string Name { get { return "Vladislavleva-1 F1(X1,X2) = exp(- (X1 - 1)²) / (1.2 + (X2 - 2.5)²)"; } } 31 31 public override string Description { 32 32 get { 33 33 return "Paper: Order of Nonlinearity as a Complexity Measure for Models Generated by Symbolic Regression via Pareto Genetic Programming " + Environment.NewLine 34 34 + "Authors: Ekaterina J. Vladislavleva, Member, IEEE, Guido F. Smits, Member, IEEE, and Dick den Hertog" + Environment.NewLine 35 + "Function: F1(X1, X2) = exp(- (X1 - 1))² / (1.2 + (X2 -2.5)²" + Environment.NewLine35 + "Function: F1(X1, X2) = exp(- (X1 - 1)²) / (1.2 + (X2 - 2.5)²)" + Environment.NewLine 36 36 + "Training Data: 100 points X1, X2 = Rand(0.3, 4)" + Environment.NewLine 37 37 + "Test Data: 45*45 points (X1, X2) = (-0.2:0.1:4.2)" + Environment.NewLine -
stable/prepareProjectsForMono.sh
r13172 r14193 13 13 unamestr=`uname` 14 14 if [[ "$unamestr" == 'Darwin' ]]; then 15 awk '/ICSharpCode.AvalonEdit-5.0.1|HeuristicLab.AvalonEdit-5.0.1 / {while (/ICSharpCode.AvalonEdit-5.0.1|HeuristicLab.AvalonEdit-5.0.1/ && getline>0) ; next} 1' HeuristicLab.ExtLibs.sln > tmp15 awk '/ICSharpCode.AvalonEdit-5.0.1|HeuristicLab.AvalonEdit-5.0.1|HeuristicLab.SharpDX-2.6.3/ {while (/ICSharpCode.AvalonEdit-5.0.1|HeuristicLab.AvalonEdit-5.0.1|HeuristicLab.SharpDX-2.6.3/ && getline>0) ; next} 1' HeuristicLab.ExtLibs.sln > tmp 16 16 mv tmp HeuristicLab.ExtLibs.sln 17 17 … … 24 24 25 25 elif [[ "$unamestr" == 'Linux' ]]; then 26 sed -e '/ICSharpCode.AvalonEdit-5.0.1/,+1d' -e '/HeuristicLab. AvalonEdit-5.0.1/,+1d' HeuristicLab.ExtLibs.sln > tmp26 sed -e '/ICSharpCode.AvalonEdit-5.0.1/,+1d' -e '/HeuristicLab.SharpDX-2.6.3/,+1d' HeuristicLab.ExtLibs.sln > tmp 27 27 mv tmp HeuristicLab.ExtLibs.sln 28 28 sed -e '/HeuristicLab.Problems.ExternalEvaluation-3.4/,+1d' -e '/HeuristicLab.Problems.ExternalEvaluation.GP-3.5/,+1d' -e '/HeuristicLab.Problems.ExternalEvaluation.Views-3.4/,+1d' -e '/HeuristicLab.Problems.ExternalEvaluation.Matlab-3.3/,+1d' "HeuristicLab 3.3.sln" > tmp
Note: See TracChangeset
for help on using the changeset viewer.