- Timestamp:
- 12/10/14 10:31:41 (10 years ago)
- Location:
- branches/ALPS
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ALPS
-
branches/ALPS/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding (added) merged: 11532,11536,11623
- Property svn:mergeinfo changed
-
branches/ALPS/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Grammars/EmptySymbolicExpressionTreeGrammar.cs
r11504 r11677 27 27 using HeuristicLab.Common; 28 28 using HeuristicLab.Core; 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 30 30 31 namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding { 32 33 [StorableClass] 31 34 internal sealed class EmptySymbolicExpressionTreeGrammar : NamedItem, ISymbolicExpressionTreeGrammar { 35 [Storable] 32 36 private ISymbolicExpressionGrammar grammar; 37 38 [StorableConstructor] 39 private EmptySymbolicExpressionTreeGrammar(bool deserializing) : base(deserializing) {} 33 40 internal EmptySymbolicExpressionTreeGrammar(ISymbolicExpressionGrammar grammar) 34 41 : base() { -
branches/ALPS/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.csproj
r11494 r11677 11 11 <RootNamespace>HeuristicLab.Encodings.SymbolicExpressionTreeEncoding</RootNamespace> 12 12 <AssemblyName>HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4</AssemblyName> 13 <TargetFrameworkVersion>v4. 0</TargetFrameworkVersion>13 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 14 14 <TargetFrameworkProfile> 15 15 </TargetFrameworkProfile> … … 47 47 <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow> 48 48 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 49 <Prefer32Bit>false</Prefer32Bit> 49 50 </PropertyGroup> 50 51 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> … … 56 57 <WarningLevel>4</WarningLevel> 57 58 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 59 <Prefer32Bit>false</Prefer32Bit> 58 60 </PropertyGroup> 59 61 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> … … 65 67 <ErrorReport>prompt</ErrorReport> 66 68 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 69 <Prefer32Bit>false</Prefer32Bit> 67 70 </PropertyGroup> 68 71 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> … … 74 77 <ErrorReport>prompt</ErrorReport> 75 78 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 79 <Prefer32Bit>false</Prefer32Bit> 76 80 </PropertyGroup> 77 81 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> … … 83 87 <ErrorReport>prompt</ErrorReport> 84 88 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 89 <Prefer32Bit>false</Prefer32Bit> 85 90 </PropertyGroup> 86 91 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> … … 92 97 <ErrorReport>prompt</ErrorReport> 93 98 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 99 <Prefer32Bit>false</Prefer32Bit> 94 100 </PropertyGroup> 95 101 <ItemGroup>
Note: See TracChangeset
for help on using the changeset viewer.