about summary refs log tree commit diff
path: root/src/test/bench/shootout-binarytrees.rs
AgeCommit message (Collapse)AuthorLines
2013-08-05Updated std::Option, std::Either and std::ResultMarvin Löbel-1/+1
- Made naming schemes consistent between Option, Result and Either - Changed Options Add implementation to work like the maybe monad (return None if any of the inputs is None) - Removed duplicate Option::get and renamed all related functions to use the term `unwrap` instead
2013-08-05Add extra::arena::Arena::new{, _with_size}.OGINO Masanori-4/+4
Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
2013-07-24fix fmt! usageDaniel Micay-1/+1
2013-07-24Change 'print(fmt!(...))' to printf!/printfln! in src/test/Birunthan Mohanathas-9/+8
2013-07-20Fix warnings in src/test/bench tests. Nobody will ever care.Ben Blum-1/+1
2013-06-23Updated copyright year on shootout-binarytrees.rsMatthijs Hofstra-21/+17
2013-06-23Fixed os:: and int:: not being in scope, changed io::println to printlnMatthijs Hofstra-4/+6
2013-05-22test: Update tests to use the new syntax.Patrick Walton-2/+2
2013-05-02librustc: Update the serializer to work properly with INHTWAMA, removing ↵Patrick Walton-11/+12
mutable fields in the process
2013-03-26test: Fix testsPatrick Walton-4/+5
2013-03-06Add manual &self/ and &static/ and /&self declarations thatNiko Matsakis-3/+6
are currently inferred. New rules are coming that will require them to be explicit. All add some explicit self declarations.
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-10-04Remove arg vectors from main functions. Stop supporting them.Brian Anderson-1/+2
2012-09-25use + mode for (almost) everything when not using legacy modesNiko Matsakis-1/+1
2012-09-11Convert 'use' to 'extern mod'. Remove old 'use' syntaxBrian Anderson-1/+1
2012-09-05test: "import" -> "use"Patrick Walton-2/+2
2012-08-28CamelCasify lots of stdBen Striegel-4/+4
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-6/+6
2012-08-21more sound treatment of fn& regions; change all & to be distinctNiko Matsakis-1/+3
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-1/+1
2012-08-05Switch alts to use arrowsBrian Anderson-2/+2
2012-08-02Purge placement new; Make borrowck know about unary move.Niko Matsakis-4/+5
cc #3071
2012-08-01Convert ret to returnBrian Anderson-4/+4
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-6/+6
2012-07-18prevent regions from escaping in ifaces; remove &r.T syntaxNiko Matsakis-1/+1
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-4/+4
#2907.
2012-07-10test: Fix shootout-binarytreesBrian Anderson-1/+1
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-3/+3
2012-06-28Make a bunch of tests stop using the deprecated vector syntax.Michael Sullivan-2/+2
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-1/+1
2012-05-26bench: Increase the difficulty of some benchmarksBrian Anderson-1/+1
2012-05-23bench: Add hard mode to benchmarks. Activate with RUST_BENCH.Brian Anderson-3/+7
RUST_BENCH is on automatically when running `make perf`
2012-04-19update syntax to include a slashNiko Matsakis-1/+1
2012-04-19make nominal types optionally parameterized by a self region.Niko Matsakis-1/+1
Issue #2201.
2012-03-29test: Rewrite binarytrees to use arenasPatrick Walton-11/+22
Perf isn't bad now. Still 50% slower than Java, but faster than other GC'd languages.
2012-03-22make --enforce-mut-vars always on, add mut annotations to remaining filesNiko Matsakis-5/+5
2012-03-12Libc/os/run/rand/io reorganization. Close #1373. Close #1638.Graydon Hoare-6/+6
- Move io, run and rand to core. - Remove incorrect ctypes module (use libc). - Remove os-specific modules for os and fs. - Split fs between core::path and core::os.
2012-02-22Make the various from_str functions return optionsMarijn Haverbeke-2/+1
So that they can be used with user input without causing task failures. Closes #1335
2012-02-09Increase precedence of as operatorMarijn Haverbeke-1/+1
Closes #1717
2012-01-19rustc: Make the pretty printer output commas after enum variants. Update all ↵Patrick Walton-1/+1
tests accordingly.
2012-01-19test: "tag" -> "enum" in benchPatrick Walton-1/+1
2012-01-18Remove '.' after nullary tags in patternsTim Chevalier-1/+1
Does what it says on the tin. The next commit will remove support for this syntax.
2012-01-14bench: Lower the default inputs on many shootout benchmarksBrian Anderson-1/+1
Make them run a bit faster during normal testing
2012-01-14bench: Update shootout-binarytrees for styleBrian Anderson-8/+15
2012-01-14bench: Update shootout-binarytrees to use unique boxesBrian Anderson-5/+5
Shared boxes have a huge performance overhead due to #1493
2011-12-22Merge all 3 log syntaxes, tidy up residual misuses.Graydon Hoare-6/+6
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-1/+1
2011-09-01Convert all uses of #ifmt to #fmt. Issue #855Brian Anderson-3/+3
2011-08-31Convert uses of #fmt to #ifmt. Issue #855Brian Anderson-3/+3
2011-08-20ReformatBrian Anderson-7/+7
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]