Changes in / [74:9394072da54f:75:6265aa2f9d7e] in lemon-main
- Files:
-
- 3 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
r5 r70 1 1 ACLOCAL_AMFLAGS = -I m4 2 2 3 AM_CPPFLAGS = -I$(top_srcdir) 3 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) 4 4 LDADD = $(top_builddir)/lemon/libemon.la 5 5 -
configure.ac
r60 r64 14 14 AC_CONFIG_AUX_DIR([build-aux]) 15 15 AC_CONFIG_MACRO_DIR([m4]) 16 AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects ])16 AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects nostdinc]) 17 17 AC_CONFIG_SRCDIR([lemon/list_graph.h]) 18 18 AC_CONFIG_HEADERS([config.h lemon/config.h]) -
lemon/Makefile.am
r58 r69 16 16 17 17 lemon_HEADERS += \ 18 lemon/concept_check.h \ 18 19 lemon/dim2.h \ 20 lemon/error.h \ 21 lemon/list_graph.h \ 19 22 lemon/maps.h \ 23 lemon/math.h \ 20 24 lemon/random.h \ 21 lemon/list_graph.h \22 25 lemon/tolerance.h 23 26 -
lemon/random.h
r62 r68 68 68 69 69 #include <ctime> 70 #include <cmath> 71 70 71 #include <lemon/math.h> 72 72 #include <lemon/dim2.h> 73 73 74 ///\ingroup misc 74 75 ///\file … … 760 761 double xi,nu; 761 762 const double delta = k-std::floor(k); 762 const double v0= M_E/(M_E-delta);763 const double v0=E/(E-delta); 763 764 do { 764 765 double V0=1.0-real<double>(); -
test/Makefile.am
r58 r67 11 11 test/dim_test \ 12 12 test/graph_test \ 13 test/maps_test \ 13 14 test/random_test \ 14 15 test/test_tools_fail \ … … 20 21 test_digraph_test_SOURCES = test/digraph_test.cc 21 22 test_dim_test_SOURCES = test/dim_test.cc 23 #test_error_test_SOURCES = test/error_test.cc 22 24 test_graph_test_SOURCES = test/graph_test.cc 25 test_maps_test_SOURCES = test/maps_test.cc 23 26 test_random_test_SOURCES = test/random_test.cc 24 27 test_test_tools_fail_SOURCES = test/test_tools_fail.cc
Note: See TracChangeset
for help on using the changeset viewer.