Changes in / [44:7bbd94715db5:43:17e76967c49f] in lemon-main
- Files:
-
- 8 deleted
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/base.cc
r39 r7 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). -
lemon/bits/invalid.h
r39 r13 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). -
lemon/bits/utility.h
r39 r7 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). -
lemon/concept_check.h
r39 r27 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). -
lemon/concepts/maps.h
r39 r35 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). -
lemon/dim2.h
r42 r15 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). … … 534 534 535 535 536 ///Map of x-coordinates of a Pointmap537 538 ///\ingroup maps 539 ///Map of x-coordinates of a \ref dim2::Point "Point"-map.536 ///Map of x-coordinates of a \ref Point "Point"-map 537 538 ///\ingroup maps 539 ///Map of x-coordinates of a \ref Point "Point"-map. 540 540 /// 541 541 template<class M> … … 571 571 } 572 572 573 ///Constant (read only) version of XMap573 ///Constant (read only) version of \ref XMap 574 574 575 575 ///\ingroup maps … … 601 601 } 602 602 603 ///Map of y-coordinates of a Pointmap603 ///Map of y-coordinates of a \ref Point "Point"-map 604 604 605 605 ///\ingroup maps … … 638 638 } 639 639 640 ///Constant (read only) version of YMap640 ///Constant (read only) version of \ref YMap 641 641 642 642 ///\ingroup maps … … 669 669 670 670 671 ///\brief Map of the normSquare()672 ///of a Pointmap671 ///\brief Map of the \ref Point::normSquare() "normSquare()" 672 ///of a \ref Point "Point"-map 673 673 /// 674 674 ///Map of the \ref Point::normSquare() "normSquare()" -
lemon/list_graph.h
r39 r2 1 /* -*- C++ -*-2 *3 * This file is a part of LEMON, a generic C++ optimization library4 *5 * Copyright (C) 2003-20086 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport7 * (Egervary Research Group on Combinatorial Optimization, EGRES).8 *9 * Permission to use, modify and distribute this software is granted10 * provided that this copyright notice appears in all copies. For11 * precise terms see the accompanying LICENSE file.12 *13 * This software is provided "AS IS" with no warranty of any kind,14 * express or implied, and with no claim as to its suitability for any15 * purpose.16 *17 */18 -
lemon/maps.h
r44 r43 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). … … 170 170 171 171 typedef True ReferenceMapTag; 172 /// Key type172 ///\e 173 173 typedef K Key; 174 /// Value type174 ///\e 175 175 typedef T Value; 176 /// Reference Type176 ///\e 177 177 typedef T& Reference; 178 /// Const reference type178 ///\e 179 179 typedef const T& ConstReference; 180 180 -
lemon/random.cc
r39 r16 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). -
lemon/random.h
r39 r23 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). -
lemon/tolerance.h
r42 r16 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). … … 42 42 /// 43 43 ///This is an abstract class, it should be specialized for all numerical 44 ///data types. These specialized classes like Tolerance<double>44 ///data types. These specialized classes like \ref Tolerance\<double\> 45 45 ///may offer additional tuning parameters. 46 46 /// … … 92 92 93 93 94 ///Float specialization of Tolerance.95 96 ///Float specialization of Tolerance.94 ///Float specialization of \ref Tolerance. 95 96 ///Float specialization of \ref Tolerance. 97 97 ///\sa Tolerance 98 98 ///\relates Tolerance … … 143 143 }; 144 144 145 ///Double specialization of Tolerance.146 147 ///Double specialization of Tolerance.145 ///Double specialization of \ref Tolerance. 146 147 ///Double specialization of \ref Tolerance. 148 148 ///\sa Tolerance 149 149 ///\relates Tolerance … … 194 194 }; 195 195 196 ///Long double specialization of Tolerance.197 198 ///Long double specialization of Tolerance.196 ///Long double specialization of \ref Tolerance. 197 198 ///Long double specialization of \ref Tolerance. 199 199 ///\sa Tolerance 200 200 ///\relates Tolerance … … 245 245 }; 246 246 247 ///Integer specialization of Tolerance.248 249 ///Integer specialization of Tolerance.247 ///Integer specialization of \ref Tolerance. 248 249 ///Integer specialization of \ref Tolerance. 250 250 ///\sa Tolerance 251 251 template<> … … 257 257 258 258 ///\name Comparisons 259 ///See Tolerance for more details.259 ///See \ref Tolerance for more details. 260 260 261 261 ///@{ … … 278 278 }; 279 279 280 ///Unsigned integer specialization of Tolerance.281 282 280 ///Unsigned integer specialization of \ref Tolerance. 281 282 ///Unsigned integer specialization of \ref Tolerance. 283 283 ///\sa Tolerance 284 284 template<> … … 290 290 291 291 ///\name Comparisons 292 ///See Tolerance for more details.292 ///See \ref Tolerance for more details. 293 293 294 294 ///@{ … … 312 312 313 313 314 ///Long integer specialization of Tolerance.315 316 ///Long integer specialization of Tolerance.314 ///Long integer specialization of \ref Tolerance. 315 316 ///Long integer specialization of \ref Tolerance. 317 317 ///\sa Tolerance 318 318 template<> … … 324 324 325 325 ///\name Comparisons 326 ///See Tolerance for more details.326 ///See \ref Tolerance for more details. 327 327 328 328 ///@{ … … 345 345 }; 346 346 347 ///Unsigned long integer specialization of Tolerance.348 349 347 ///Unsigned long integer specialization of \ref Tolerance. 348 349 ///Unsigned long integer specialization of \ref Tolerance. 350 350 ///\sa Tolerance 351 351 template<> … … 357 357 358 358 ///\name Comparisons 359 ///See Tolerance for more details.359 ///See \ref Tolerance for more details. 360 360 361 361 ///@{ … … 380 380 #if defined __GNUC__ && !defined __STRICT_ANSI__ 381 381 382 ///Long long integer specialization of Tolerance.382 ///Long long integer specialization of \ref Tolerance. 383 383 384 384 ///Long long integer specialization of \ref Tolerance. … … 415 415 }; 416 416 417 ///Unsigned long long integer specialization of Tolerance.417 ///Unsigned long long integer specialization of \ref Tolerance. 418 418 419 419 ///Unsigned long long integer specialization of \ref Tolerance. -
test/dim_test.cc
r39 r14 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). -
test/maps_test.cc
r39 r25 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). -
test/random_test.cc
r39 r10 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). -
test/test_tools.h
r39 r4 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). -
test/test_tools_fail.cc
r39 r4 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). -
test/test_tools_pass.cc
r39 r4 3 3 * This file is a part of LEMON, a generic C++ optimization library 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2007 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
Note: See TracChangeset
for help on using the changeset viewer.