about summary refs log tree commit diff
path: root/src/test/bench/shootout-nbody.rs
AgeCommit message (Expand)AuthorLines
2016-01-29Remove src/test/benchBrian Anderson-244/+0
2015-10-14Remove unnecessary parentheses around range expressionsAndrew Paseltiner-1/+1
2015-10-07bench: rewrite nbody for better vectorizationCristi Cobzarenco-87/+132
2015-06-11Conver reborrows to .iter() calls where appropriateJoshua Landau-1/+1
2015-04-21std: Bring back f32::from_str_radix as an unstable APIAlex Crichton-15/+6
2015-04-14Positive case of `len()` -> `is_empty()`Tamir Duberstein-1/+1
2015-04-01Fallout in testsNiko Matsakis-1/+1
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-2/+2
2015-03-23Require feature attributes, and add them where necessaryBrian Anderson-0/+2
2015-02-16Replace some uses of deprecated os functionsSimonas Kazlauskas-1/+1
2015-02-13Cleanup getenv from tests and benchmarksSimonas Kazlauskas-1/+1
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-1/+1
2015-02-02`for x in xs.iter_mut()` -> `for x in &mut xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-1/+1
2015-01-30std: Stabilize FromStr and parseAlex Crichton-1/+1
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-1/+1
2015-01-29Auto merge of #21680 - japaric:slice, r=alexcrichtonbors-1/+1
2015-01-27cleanup: s/`v.slice*()`/`&v[a..b]`/g + remove redundant `as_slice()` callsJorge Aparicio-1/+1
2015-01-25cleanup: s/impl Copy/#[derive(Copy)]/gJorge Aparicio-2/+1
2015-01-08bench: fix a few compiler warningsTshepang Lekhonkhobe-1/+1
2015-01-03Remove deprecated functionalityAlex Crichton-2/+1
2015-01-02std: Stabilize the prelude moduleAlex Crichton-0/+1
2014-12-20Allow use of `[_ ; n]` syntax for fixed length and repeating arrays.Nick Cameron-4/+4
2014-12-08librustc: Make `Copy` opt-in.Niko Matsakis-0/+2
2014-11-18std: Stabilize std::fmtAlex Crichton-2/+2
2014-11-13Remove lots of numeric traits from the preludesBrendan Zabarauskas-0/+2
2014-10-19Remove a large amount of deprecated functionalityAlex Crichton-1/+19
2014-10-11auto merge of #17936 : TeXitoi/rust/remove-shootout-warnings, r=alexcrichtonbors-3/+3
2014-10-11remove shootout warningsGuillaume Pinot-3/+3
2014-10-09test: Convert statics to constantsAlex Crichton-4/+4
2014-09-16Fallout from renamingAaron Turon-1/+1
2014-09-07Relicense shootout-nbody.rs to the shootout licenseGuillaume Pinot-8/+38
2014-05-22libcore: Remove all uses of `~str` from `libcore`.Patrick Walton-1/+1
2014-05-12shootout-nbody improvementGuillaume Pinot-23/+20
2014-05-10shootout-nbody improvementsGuillaume Pinot-97/+87
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-2/+2
2014-03-22Remove outdated and unnecessary std::vec_ng::Vec imports.Huon Wilson-1/+0
2014-03-21test: Make manual changes to deal with the fallout from removal ofPatrick Walton-2/+3
2014-03-21test: Automatically remove all `~[T]` from tests.Patrick Walton-2/+2
2014-02-07Added tests to make tidyDerek Guenther-0/+10
2013-11-12Fixed xfail for nbody shootout benchmark by correcting command line parse.Carol W-6/+13
2013-09-26Update the compiler to not use printf/printflnAlex Crichton-2/+2
2013-08-30Revert "src/test/bench: restructure"Corey Richardson-0/+151
2013-08-28src/test/bench: restructureCorey Richardson-151/+0
2013-08-07test: xfail a bunch of tests that are incorrectly reading os::args()[1]Brian Anderson-0/+2
2013-08-06remove `extra::iter`Daniel Micay-1/+1
2013-08-05Updated std::Option, std::Either and std::ResultMarvin Löbel-1/+1
2013-08-03remove obsolete `foreach` keywordDaniel Micay-9/+9
2013-08-02replace `range` with an external iteratorDaniel Micay-9/+8
2013-08-01std: Change `Times` trait to use `do` instead of `for`blake2-ppc-1/+1