Skip to content

Commit 8a4bcae

Browse files
committed
Linux/Housekeeping/Bug fixes/Extend xTreme/Defs
Another attempt to reach Linux portability: Thank you, Jim Ablett! Housekeeping: Defined parameters that used to be typed in as numbers in several places. Bug fixes: Fixed several minor inconsistencies found during housekeeping. Extended xTreme configurability: Allowed split depths down to 8. Other default setting changes: Alchemy; Set to "aggressive" personality to try. Version change: From 2.2.3 to 2.3, preemptively, in anticipation of release thereof.
1 parent 0914b2d commit 8a4bcae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+2839
-239
lines changed

Firenzina/Firenzina.vcxproj

Lines changed: 245 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,245 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Debug|x64">
9+
<Configuration>Debug</Configuration>
10+
<Platform>x64</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Release|Win32">
13+
<Configuration>Release</Configuration>
14+
<Platform>Win32</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|x64">
17+
<Configuration>Release</Configuration>
18+
<Platform>x64</Platform>
19+
</ProjectConfiguration>
20+
</ItemGroup>
21+
<PropertyGroup Label="Globals">
22+
<ProjectGuid>{2643F986-8801-46D1-BDDF-6779FB0EF4D9}</ProjectGuid>
23+
<RootNamespace>Firenzina</RootNamespace>
24+
</PropertyGroup>
25+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
26+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
27+
<ConfigurationType>Application</ConfigurationType>
28+
<UseDebugLibraries>true</UseDebugLibraries>
29+
<PlatformToolset>v110</PlatformToolset>
30+
<CharacterSet>MultiByte</CharacterSet>
31+
</PropertyGroup>
32+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
33+
<ConfigurationType>Application</ConfigurationType>
34+
<UseDebugLibraries>true</UseDebugLibraries>
35+
<PlatformToolset>v110</PlatformToolset>
36+
<CharacterSet>MultiByte</CharacterSet>
37+
</PropertyGroup>
38+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
39+
<ConfigurationType>Application</ConfigurationType>
40+
<UseDebugLibraries>false</UseDebugLibraries>
41+
<PlatformToolset>v110</PlatformToolset>
42+
<WholeProgramOptimization>PGInstrument</WholeProgramOptimization>
43+
<CharacterSet>NotSet</CharacterSet>
44+
<ProfileGuidedOptimization>PGOOptimize</ProfileGuidedOptimization>
45+
<InterproceduralOptimization>true</InterproceduralOptimization>
46+
<UseIntelIPP>false</UseIntelIPP>
47+
</PropertyGroup>
48+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
49+
<ConfigurationType>Application</ConfigurationType>
50+
<UseDebugLibraries>false</UseDebugLibraries>
51+
<PlatformToolset>v110</PlatformToolset>
52+
<WholeProgramOptimization>true</WholeProgramOptimization>
53+
<CharacterSet>NotSet</CharacterSet>
54+
<InterproceduralOptimization>true</InterproceduralOptimization>
55+
<UseIntelIPP>Sequential</UseIntelIPP>
56+
<UseIntelMKL>No</UseIntelMKL>
57+
<ProfileGuidedOptimization>PGOOptimize</ProfileGuidedOptimization>
58+
</PropertyGroup>
59+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
60+
<ImportGroup Label="ExtensionSettings">
61+
</ImportGroup>
62+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
63+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
64+
</ImportGroup>
65+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
66+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
67+
</ImportGroup>
68+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
69+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
70+
</ImportGroup>
71+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
72+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
73+
</ImportGroup>
74+
<PropertyGroup Label="UserMacros" />
75+
<PropertyGroup />
76+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
77+
<ClCompile>
78+
<WarningLevel>Level3</WarningLevel>
79+
<Optimization>Disabled</Optimization>
80+
</ClCompile>
81+
<Link>
82+
<GenerateDebugInformation>true</GenerateDebugInformation>
83+
</Link>
84+
</ItemDefinitionGroup>
85+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
86+
<ClCompile>
87+
<WarningLevel>Level3</WarningLevel>
88+
<Optimization>Disabled</Optimization>
89+
</ClCompile>
90+
<Link>
91+
<GenerateDebugInformation>true</GenerateDebugInformation>
92+
</Link>
93+
</ItemDefinitionGroup>
94+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
95+
<ClCompile>
96+
<WarningLevel>Level3</WarningLevel>
97+
<FunctionLevelLinking>true</FunctionLevelLinking>
98+
<IntrinsicFunctions>true</IntrinsicFunctions>
99+
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
100+
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
101+
<EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
102+
<OmitFramePointers>true</OmitFramePointers>
103+
<UseIntelOptimizedHeaders>false</UseIntelOptimizedHeaders>
104+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
105+
<BufferSecurityCheck>false</BufferSecurityCheck>
106+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;NOALIAS</PreprocessorDefinitions>
107+
<C99Support>true</C99Support>
108+
<VectorizerDiagnosticLevel>LoopsSuccessUnsuccessVect2</VectorizerDiagnosticLevel>
109+
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
110+
<FloatingPointModel>Precise</FloatingPointModel>
111+
<CallingConvention>Cdecl</CallingConvention>
112+
</ClCompile>
113+
<Link>
114+
<GenerateDebugInformation>true</GenerateDebugInformation>
115+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
116+
<OptimizeReferences>true</OptimizeReferences>
117+
</Link>
118+
</ItemDefinitionGroup>
119+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
120+
<ClCompile>
121+
<WarningLevel>Level3</WarningLevel>
122+
<FunctionLevelLinking>true</FunctionLevelLinking>
123+
<IntrinsicFunctions>true</IntrinsicFunctions>
124+
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
125+
<EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
126+
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
127+
<C99Support>true</C99Support>
128+
<FloatingPointModel>Precise</FloatingPointModel>
129+
<VectorizerDiagnosticLevel>LoopsSuccessUnsuccessVect2</VectorizerDiagnosticLevel>
130+
<PreprocessorDefinitions>WIN64;NDEBUG;_CONSOLE;_MBCS;%(PreprocessorDefinitions);NOALIAS</PreprocessorDefinitions>
131+
<Parallelization>false</Parallelization>
132+
<UseIntelOptimizedHeaders>true</UseIntelOptimizedHeaders>
133+
<GenerateAlternateCodePaths>None</GenerateAlternateCodePaths>
134+
<UseProcessorExtensions>SSE42</UseProcessorExtensions>
135+
<EnableAnsiAliasing>true</EnableAnsiAliasing>
136+
<StringPooling>true</StringPooling>
137+
<BufferSecurityCheck>false</BufferSecurityCheck>
138+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
139+
<CheckUndimensionedArrays>false</CheckUndimensionedArrays>
140+
<DisableIntelLangExtensions>true</DisableIntelLangExtensions>
141+
<OptimizeForWindowsApplication>true</OptimizeForWindowsApplication>
142+
<StructMemberAlignment>16Bytes</StructMemberAlignment>
143+
<DisableSpecificWarnings>4996;4820;4711;4668;</DisableSpecificWarnings>
144+
<OmitFramePointers>true</OmitFramePointers>
145+
<CallingConvention>FastCall</CallingConvention>
146+
</ClCompile>
147+
<Link>
148+
<GenerateDebugInformation>true</GenerateDebugInformation>
149+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
150+
<OptimizeReferences>true</OptimizeReferences>
151+
<SubSystem>Console</SubSystem>
152+
</Link>
153+
</ItemDefinitionGroup>
154+
<ItemGroup>
155+
<ClInclude Include="arrays.h" />
156+
<ClInclude Include="bits.h" />
157+
<ClInclude Include="black.h" />
158+
<ClInclude Include="board.h" />
159+
<ClInclude Include="common.h" />
160+
<ClInclude Include="control.h" />
161+
<ClInclude Include="evaluation.h" />
162+
<ClInclude Include="fire.h" />
163+
<ClInclude Include="functions.h" />
164+
<ClInclude Include="hash.h" />
165+
<ClInclude Include="history.h" />
166+
<ClInclude Include="init_gen.h" />
167+
<ClInclude Include="kp_black.h" />
168+
<ClInclude Include="kp_white.h" />
169+
<ClInclude Include="make_unmake.h" />
170+
<ClInclude Include="material_value.h" />
171+
<ClInclude Include="move.h" />
172+
<ClInclude Include="null_move.h" />
173+
<ClInclude Include="pawn_eval.h" />
174+
<ClInclude Include="robbo_totalbase.h" />
175+
<ClInclude Include="robbo_triplebase.h" />
176+
<ClInclude Include="slab_memory.h" />
177+
<ClInclude Include="SMP.h" />
178+
<ClInclude Include="undef.h" />
179+
<ClInclude Include="white.h" />
180+
<ClInclude Include="win-linux.h" />
181+
<ClInclude Include="win32bits.h" />
182+
<ClInclude Include="win64bits.h" />
183+
</ItemGroup>
184+
<ItemGroup>
185+
<ClCompile Include="50move.c" />
186+
<ClCompile Include="all_node.c" />
187+
<ClCompile Include="arrays.c" />
188+
<ClCompile Include="benchmark.c" />
189+
<ClCompile Include="control.c" />
190+
<ClCompile Include="cut_node.c" />
191+
<ClCompile Include="endgame.c" />
192+
<ClCompile Include="evaluation.c" />
193+
<ClCompile Include="exclude_node.c" />
194+
<ClCompile Include="hash_init.c" />
195+
<ClCompile Include="hash_use.c" />
196+
<ClCompile Include="init.c" />
197+
<ClCompile Include="input.c" />
198+
<ClCompile Include="low_depth.c" />
199+
<ClCompile Include="magic_mult.c" />
200+
<ClCompile Include="main.c" />
201+
<ClCompile Include="make_move.c" />
202+
<ClCompile Include="material_value.c" />
203+
<ClCompile Include="mem_handler.c" />
204+
<ClCompile Include="mobility.c" />
205+
<ClCompile Include="move_gen.c" />
206+
<ClCompile Include="next_move.c" />
207+
<ClCompile Include="ok_move.c" />
208+
<ClCompile Include="pawn_eval.c" />
209+
<ClCompile Include="pv_node.c" />
210+
<ClCompile Include="qsearch.c" />
211+
<ClCompile Include="qsearch_pv.c" />
212+
<ClCompile Include="robbo_cache.c" />
213+
<ClCompile Include="robbo_comp.c" />
214+
<ClCompile Include="robbo_count.c" />
215+
<ClCompile Include="robbo_decomp.c" />
216+
<ClCompile Include="robbo_glue.c" />
217+
<ClCompile Include="robbo_init.c" />
218+
<ClCompile Include="robbo_init_IO.c" />
219+
<ClCompile Include="robbo_suffix.c" />
220+
<ClCompile Include="robbo_triple.c" />
221+
<ClCompile Include="robbo_triple_disk.c" />
222+
<ClCompile Include="robbo_triple_init.c" />
223+
<ClCompile Include="robbo_triple_value.c" />
224+
<ClCompile Include="robbo_utility.c" />
225+
<ClCompile Include="root_analysis.c" />
226+
<ClCompile Include="root_multipv.c" />
227+
<ClCompile Include="root_node.c" />
228+
<ClCompile Include="search.c" />
229+
<ClCompile Include="SEE.c" />
230+
<ClCompile Include="set_position.c" />
231+
<ClCompile Include="signals.c" />
232+
<ClCompile Include="slab_memory.c" />
233+
<ClCompile Include="SMP.c" />
234+
<ClCompile Include="SMP_init.c" />
235+
<ClCompile Include="SMP_search.c" />
236+
<ClCompile Include="static.c" />
237+
<ClCompile Include="top_analysis.c" />
238+
<ClCompile Include="top_node.c" />
239+
<ClCompile Include="unmake_move.c" />
240+
<ClCompile Include="utility.c" />
241+
</ItemGroup>
242+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
243+
<ImportGroup Label="ExtensionTargets">
244+
</ImportGroup>
245+
</Project>

0 commit comments

Comments
 (0)