Changeset 675 for trunk/c++_tools/random
- Timestamp:
- Oct 10, 2006, 2:08:45 PM (17 years ago)
- Location:
- trunk/c++_tools/random
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/c++_tools/random/Makefile.am
r580 r675 5 5 # Copyright (C) 2005, 2006 Jari Häkkinen 6 6 # 7 # This file is part of the thep c++ tools library, 8 # http://lev.thep.lu.se/trac/c++_tools 7 # This file is part of the yat library, http://lev.thep.lu.se/trac/yat 9 8 # 10 # The c++ toolslibrary is free software; you can redistribute it9 # The yat library is free software; you can redistribute it 11 10 # and/or modify it under the terms of the GNU General Public License as 12 11 # published by the Free Software Foundation; either version 2 of the 13 12 # License, or (at your option) any later version. 14 13 # 15 # The c++library is distributed in the hope that it will be useful,14 # The yat library is distributed in the hope that it will be useful, 16 15 # but WITHOUT ANY WARRANTY; without even the implied warranty of 17 16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU … … 27 26 random.cc 28 27 29 include_randomdir = $(includedir)/ c++_tools/random28 include_randomdir = $(includedir)/yat/random 30 29 31 30 include_random_HEADERS = \ -
trunk/c++_tools/random/random.cc
r674 r675 4 4 Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson 5 5 6 This file is part of the thep c++ tools library, 7 http://lev.thep.lu.se/trac/c++_tools 6 This file is part of the yat library, http://lev.thep.lu.se/trac/yat 8 7 9 The c++ tools library is free software; you can redistribute it10 and/or modify it under the terms of the GNU General Public License11 as published by the Free Software Foundation; either version 2 of12 theLicense, or (at your option) any later version.8 The yat library is free software; you can redistribute it and/or 9 modify it under the terms of the GNU General Public License as 10 published by the Free Software Foundation; either version 2 of the 11 License, or (at your option) any later version. 13 12 14 The c++ tools library is distributed in the hope that it will be15 useful, but WITHOUT ANY WARRANTY; without even the implied warranty16 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the GNU13 The yat library is distributed in the hope that it will be useful, 14 but WITHOUT ANY WARRANTY; without even the implied warranty of 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 16 General Public License for more details. 18 17 … … 23 22 */ 24 23 25 #include <c++_tools/random/random.h>26 #include <c++_tools/statistics/Histogram.h>24 #include "yat/random/random.h" 25 #include "yat/statistics/Histogram.h" 27 26 28 27 #include <fstream> -
trunk/c++_tools/random/random.h
r674 r675 1 #ifndef _theplu_random_ 2 #define _theplu_random_ 3 1 4 // $Id$ 2 5 … … 4 7 Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson 5 8 6 This file is part of the thep c++ tools library, 7 http://lev.thep.lu.se/trac/c++_tools 8 9 The c++ tools library is free software; you can redistribute it 10 and/or modify it under the terms of the GNU General Public License 11 as published by the Free Software Foundation; either version 2 of 12 the License, or (at your option) any later version. 13 14 The c++ tools library is distributed in the hope that it will be 15 useful, but WITHOUT ANY WARRANTY; without even the implied warranty 16 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 9 This file is part of the yat library, http://lev.thep.lu.se/trac/yat 10 11 The yat library is free software; you can redistribute it and/or 12 modify it under the terms of the GNU General Public License as 13 published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version. 15 16 The yat library is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 19 General Public License for more details. 18 20 … … 23 25 */ 24 26 25 #ifndef _theplu_random_ 26 #define _theplu_random_ 27 28 #include <c++_tools/statistics/Histogram.h> 27 #include "yat/statistics/Histogram.h" 29 28 30 29 #include <gsl/gsl_rng.h>
Note: See TracChangeset
for help on using the changeset viewer.