From: Tobias Geerinckx-Rice Date: Wed, 3 Oct 2018 23:30:42 +0200 Subject: [PATCH] bastet: Change source of unordered_set. This allows building bastet 0.43.2 with boost >=1.66. It was backported verbatim from the upstream master branch. From 0e03f8d4d6bc6949cf1c447e632ce0d1b98c4be1 Mon Sep 17 00:00:00 2001 From: Federico Poloni Date: Wed, 4 Oct 2017 19:35:01 +0200 Subject: [PATCH] Changed source of unordered_set (should hopefully fix #6 without reopening #1) --- BastetBlockChooser.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/BastetBlockChooser.hpp b/BastetBlockChooser.hpp index 992e556..7ee3b7c 100644 --- a/BastetBlockChooser.hpp +++ b/BastetBlockChooser.hpp @@ -23,8 +23,7 @@ #include "Well.hpp" -#include -#include +#include #include namespace Bastet{ @@ -75,7 +74,7 @@ namespace Bastet{ public: Searcher(BlockType b, const Well *well, Vertex v, WellVisitor *visitor); private: - std::tr1::unordered_set _visited; + boost::unordered_set _visited; //std::set _visited; ^^ the above is more efficient, we need to do many inserts BlockType _block; const Well *_well; d93280015a5d37419f1544a3bf04c25a9'>treecommitdiff
AgeCommit message (Collapse)Author
2020-09-28tests: Simplify shell exit status negation;Eric Bavier
* tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-environment.sh, tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh, tests/guix-hash.sh, tests/guix-lint.sh, tests/guix-pack-relocatable.sh, tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh: Use the shell '!' keyword to negate command exit status in place of 'if ...; then false; else true; fi'
2020-05-11guix graph: Add '--path'.Ludovic Courtès
* guix/scripts/graph.scm (display-path): New procedure. (%options, show-help): Add '--path'. (guix-graph): Handle it. * tests/guix-graph.sh: Add tests. * doc/guix.texi (Invoking guix graph): Document it. (Invoking guix size): Mention it.
2020-01-16graph: Add '--load-path' option.Pierre Neidhardt
* guix/scripts/graph.scm (%option): Add '--load-path' option. * doc/guix.texi: Document it. * tests/guix-graph.sh: Test it.
2019-11-07graph: Support package transformation options.Ludovic Courtès
* guix/scripts/graph.scm (%options): Append %TRANSFORMATION-OPTIONS. (show-help): Call 'show-transformation-options-help'. (guix-graph): Call 'options->transformation' and use it. * tests/guix-graph.sh: Add test. * doc/guix.texi (Invoking guix graph): Document it.