| @@ -84,7 +84,6 @@ test/testsuite | |||||
| test/sandbox/sample | test/sandbox/sample | ||||
| test/math/pi | test/math/pi | ||||
| test/math/poly | test/math/poly | ||||
| test/math/remez | |||||
| test/xolotl/xolotl | test/xolotl/xolotl | ||||
| tools/make-font | tools/make-font | ||||
| demos/lol.js/lol.js | demos/lol.js/lol.js | ||||
| @@ -538,6 +538,9 @@ AC_CONFIG_FILES( | |||||
| [demos/tutorial/Makefile | [demos/tutorial/Makefile | ||||
| demos/lol.js/Makefile | demos/lol.js/Makefile | ||||
| ]) | ]) | ||||
| AC_CONFIG_FILES( | |||||
| [tools/lolremez/Makefile | |||||
| ]) | |||||
| AC_CONFIG_FILES( | AC_CONFIG_FILES( | ||||
| [tools/neercs/Makefile | [tools/neercs/Makefile | ||||
| ]) | ]) | ||||
| @@ -38,7 +38,7 @@ liblolcore_headers = \ | |||||
| \ | \ | ||||
| lol/math/all.h \ | lol/math/all.h \ | ||||
| lol/math/functions.h lol/math/vector.h lol/math/half.h lol/math/real.h \ | lol/math/functions.h lol/math/vector.h lol/math/half.h lol/math/real.h \ | ||||
| lol/math/remez.h lol/math/geometry.h lol/math/interp.h lol/math/rand.h \ | |||||
| lol/math/geometry.h lol/math/interp.h lol/math/rand.h \ | |||||
| lol/math/constants.h \ | lol/math/constants.h \ | ||||
| \ | \ | ||||
| lol/sys/all.h \ | lol/sys/all.h \ | ||||
| @@ -1,9 +1,7 @@ | |||||
| include $(top_srcdir)/build/autotools/common.am | include $(top_srcdir)/build/autotools/common.am | ||||
| EXTRA_DIST += NEWS.txt lolremez.sln remez.vcxproj remez.vcxproj.filters | |||||
| noinst_PROGRAMS = pi poly remez | |||||
| noinst_PROGRAMS = pi poly | |||||
| pi_SOURCES = pi.cpp | pi_SOURCES = pi.cpp | ||||
| pi_CPPFLAGS = $(AM_CPPFLAGS) | pi_CPPFLAGS = $(AM_CPPFLAGS) | ||||
| @@ -13,7 +11,3 @@ poly_SOURCES = poly.cpp | |||||
| poly_CPPFLAGS = $(AM_CPPFLAGS) | poly_CPPFLAGS = $(AM_CPPFLAGS) | ||||
| poly_DEPENDENCIES = @LOL_DEPS@ | poly_DEPENDENCIES = @LOL_DEPS@ | ||||
| remez_SOURCES = remez.cpp | |||||
| remez_CPPFLAGS = $(AM_CPPFLAGS) | |||||
| remez_DEPENDENCIES = @LOL_DEPS@ | |||||
| @@ -2,6 +2,7 @@ | |||||
| include $(top_srcdir)/build/autotools/common.am | include $(top_srcdir)/build/autotools/common.am | ||||
| SUBDIRS = | SUBDIRS = | ||||
| SUBDIRS += lolremez | |||||
| SUBDIRS += neercs | SUBDIRS += neercs | ||||
| SUBDIRS += vimlol | SUBDIRS += vimlol | ||||
| SUBDIRS += vslol | SUBDIRS += vslol | ||||
| @@ -0,0 +1,2 @@ | |||||
| # Our binaries | |||||
| lolremez | |||||
| @@ -0,0 +1,11 @@ | |||||
| include $(top_srcdir)/build/autotools/common.am | |||||
| EXTRA_DIST += NEWS.txt lolremez.sln remez.vcxproj remez.vcxproj.filters | |||||
| noinst_PROGRAMS = lolremez | |||||
| lolremez_SOURCES = lolremez.cpp | |||||
| lolremez_CPPFLAGS = $(AM_CPPFLAGS) | |||||
| lolremez_DEPENDENCIES = @LOL_DEPS@ | |||||
| @@ -15,7 +15,8 @@ | |||||
| #include "core.h" | #include "core.h" | ||||
| #include <lol/math/real.h> | #include <lol/math/real.h> | ||||
| #include <lol/math/remez.h> | |||||
| #include "lolremez.h" | |||||
| using lol::real; | using lol::real; | ||||
| using lol::RemezSolver; | using lol::RemezSolver; | ||||
| @@ -1,7 +1,7 @@ | |||||
| | | ||||
| Microsoft Visual Studio Solution File, Format Version 11.00 | Microsoft Visual Studio Solution File, Format Version 11.00 | ||||
| # Visual Studio 2010 | # Visual Studio 2010 | ||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "remez", "remez.vcxproj", "{A2767731-6FBF-442C-900F-301D095516E7}" | |||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lolremez", "lolremez.vcxproj", "{A2767731-6FBF-442C-900F-301D095516E7}" | |||||
| EndProject | EndProject | ||||
| Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{663F5D32-D212-4A88-A681-84B54D3188A3}" | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{663F5D32-D212-4A88-A681-84B54D3188A3}" | ||||
| ProjectSection(SolutionItems) = preProject | ProjectSection(SolutionItems) = preProject | ||||
| @@ -21,7 +21,7 @@ | |||||
| <PropertyGroup Label="Globals"> | <PropertyGroup Label="Globals"> | ||||
| <ProjectGuid>{A2767731-6FBF-442C-900F-301D095516E7}</ProjectGuid> | <ProjectGuid>{A2767731-6FBF-442C-900F-301D095516E7}</ProjectGuid> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| <RootNamespace>remez</RootNamespace> | |||||
| <RootNamespace>lolremez</RootNamespace> | |||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | ||||
| @@ -138,12 +138,12 @@ | |||||
| </ItemDefinitionGroup> | </ItemDefinitionGroup> | ||||
| <ItemGroup> | <ItemGroup> | ||||
| <ClCompile Include="real.cpp" /> | <ClCompile Include="real.cpp" /> | ||||
| <ClCompile Include="remez.cpp" /> | |||||
| <ClCompile Include="lolremez.cpp" /> | |||||
| </ItemGroup> | </ItemGroup> | ||||
| <ItemGroup> | <ItemGroup> | ||||
| <ClInclude Include="lol\math\matrix.h" /> | <ClInclude Include="lol\math\matrix.h" /> | ||||
| <ClInclude Include="lol\math\real.h" /> | <ClInclude Include="lol\math\real.h" /> | ||||
| <ClInclude Include="lol\math\remez.h" /> | |||||
| <ClInclude Include="lolremez.h" /> | |||||
| </ItemGroup> | </ItemGroup> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| @@ -12,7 +12,7 @@ | |||||
| </ItemGroup> | </ItemGroup> | ||||
| <ItemGroup> | <ItemGroup> | ||||
| <ClCompile Include="real.cpp" /> | <ClCompile Include="real.cpp" /> | ||||
| <ClCompile Include="remez.cpp" /> | |||||
| <ClCompile Include="lolremez.cpp" /> | |||||
| </ItemGroup> | </ItemGroup> | ||||
| <ItemGroup> | <ItemGroup> | ||||
| <ClInclude Include="lol\math\matrix.h"> | <ClInclude Include="lol\math\matrix.h"> | ||||
| @@ -21,8 +21,6 @@ | |||||
| <ClInclude Include="lol\math\real.h"> | <ClInclude Include="lol\math\real.h"> | ||||
| <Filter>lol\math</Filter> | <Filter>lol\math</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| <ClInclude Include="lol\math\remez.h"> | |||||
| <Filter>lol\math</Filter> | |||||
| </ClInclude> | |||||
| <ClInclude Include="lolremez.h" /> | |||||
| </ItemGroup> | </ItemGroup> | ||||
| </Project> | |||||
| </Project> | |||||