2014-06-08 22:25:49 +02:00
|
|
|
// The Computer Language Benchmarks Game
|
|
|
|
// http://benchmarksgame.alioth.debian.org/
|
2014-02-05 16:33:10 -06:00
|
|
|
//
|
2014-06-08 22:25:49 +02:00
|
|
|
// contributed by the Rust Project Developers
|
|
|
|
|
|
|
|
// Copyright (c) 2014 The Rust Project Developers
|
|
|
|
//
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions
|
|
|
|
// are met:
|
|
|
|
//
|
|
|
|
// - Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// - Redistributions in binary form must reproduce the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer in
|
|
|
|
// the documentation and/or other materials provided with the
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
// - Neither the name of "The Computer Language Benchmarks Game" nor
|
|
|
|
// the name of "The Computer Language Shootout Benchmarks" nor the
|
|
|
|
// names of its contributors may be used to endorse or promote
|
|
|
|
// products derived from this software without specific prior
|
|
|
|
// written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
|
|
// OF THE POSSIBILITY OF SUCH DAMAGE.
|
2014-02-05 16:33:10 -06:00
|
|
|
|
2014-09-26 17:48:16 +12:00
|
|
|
#![feature(slicing_syntax)]
|
|
|
|
|
2014-09-04 18:45:11 -07:00
|
|
|
use std::{cmp, iter, mem};
|
|
|
|
use std::sync::Future;
|
2013-04-17 14:19:25 -07:00
|
|
|
|
2014-09-04 18:45:11 -07:00
|
|
|
fn rotate(x: &mut [i32]) {
|
|
|
|
let mut prev = x[0];
|
2014-09-14 20:27:36 -07:00
|
|
|
for place in x.iter_mut().rev() {
|
2014-09-04 18:45:11 -07:00
|
|
|
prev = mem::replace(place, prev)
|
|
|
|
}
|
2013-04-17 14:19:25 -07:00
|
|
|
}
|
|
|
|
|
2014-09-04 18:45:11 -07:00
|
|
|
fn next_permutation(perm: &mut [i32], count: &mut [i32]) {
|
|
|
|
for i in range(1, perm.len()) {
|
2014-12-19 12:44:24 +13:00
|
|
|
rotate(perm.slice_to_mut(i + 1));
|
2014-09-04 18:45:11 -07:00
|
|
|
let count_i = &mut count[i];
|
|
|
|
if *count_i >= i as i32 {
|
|
|
|
*count_i = 0;
|
|
|
|
} else {
|
|
|
|
*count_i += 1;
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct P {
|
2014-12-20 15:20:51 +13:00
|
|
|
p: [i32; 16],
|
2014-09-04 18:45:11 -07:00
|
|
|
}
|
|
|
|
|
librustc: Make `Copy` opt-in.
This change makes the compiler no longer infer whether types (structures
and enumerations) implement the `Copy` trait (and thus are implicitly
copyable). Rather, you must implement `Copy` yourself via `impl Copy for
MyType {}`.
A new warning has been added, `missing_copy_implementations`, to warn
you if a non-generic public type has been added that could have
implemented `Copy` but didn't.
For convenience, you may *temporarily* opt out of this behavior by using
`#![feature(opt_out_copy)]`. Note though that this feature gate will never be
accepted and will be removed by the time that 1.0 is released, so you should
transition your code away from using it.
This breaks code like:
#[deriving(Show)]
struct Point2D {
x: int,
y: int,
}
fn main() {
let mypoint = Point2D {
x: 1,
y: 1,
};
let otherpoint = mypoint;
println!("{}{}", mypoint, otherpoint);
}
Change this code to:
#[deriving(Show)]
struct Point2D {
x: int,
y: int,
}
impl Copy for Point2D {}
fn main() {
let mypoint = Point2D {
x: 1,
y: 1,
};
let otherpoint = mypoint;
println!("{}{}", mypoint, otherpoint);
}
This is the backwards-incompatible part of #13231.
Part of RFC #3.
[breaking-change]
2014-12-05 17:01:33 -08:00
|
|
|
impl Copy for P {}
|
|
|
|
|
2014-09-04 18:45:11 -07:00
|
|
|
struct Perm {
|
2014-12-20 15:20:51 +13:00
|
|
|
cnt: [i32; 16],
|
|
|
|
fact: [u32; 16],
|
2014-09-04 18:45:11 -07:00
|
|
|
n: u32,
|
|
|
|
permcount: u32,
|
|
|
|
perm: P,
|
|
|
|
}
|
2013-04-17 14:19:25 -07:00
|
|
|
|
librustc: Make `Copy` opt-in.
This change makes the compiler no longer infer whether types (structures
and enumerations) implement the `Copy` trait (and thus are implicitly
copyable). Rather, you must implement `Copy` yourself via `impl Copy for
MyType {}`.
A new warning has been added, `missing_copy_implementations`, to warn
you if a non-generic public type has been added that could have
implemented `Copy` but didn't.
For convenience, you may *temporarily* opt out of this behavior by using
`#![feature(opt_out_copy)]`. Note though that this feature gate will never be
accepted and will be removed by the time that 1.0 is released, so you should
transition your code away from using it.
This breaks code like:
#[deriving(Show)]
struct Point2D {
x: int,
y: int,
}
fn main() {
let mypoint = Point2D {
x: 1,
y: 1,
};
let otherpoint = mypoint;
println!("{}{}", mypoint, otherpoint);
}
Change this code to:
#[deriving(Show)]
struct Point2D {
x: int,
y: int,
}
impl Copy for Point2D {}
fn main() {
let mypoint = Point2D {
x: 1,
y: 1,
};
let otherpoint = mypoint;
println!("{}{}", mypoint, otherpoint);
}
This is the backwards-incompatible part of #13231.
Part of RFC #3.
[breaking-change]
2014-12-05 17:01:33 -08:00
|
|
|
impl Copy for Perm {}
|
|
|
|
|
2014-09-04 18:45:11 -07:00
|
|
|
impl Perm {
|
|
|
|
fn new(n: u32) -> Perm {
|
2014-12-20 15:20:51 +13:00
|
|
|
let mut fact = [1; 16];
|
2014-09-04 18:45:11 -07:00
|
|
|
for i in range(1, n as uint + 1) {
|
|
|
|
fact[i] = fact[i - 1] * i as u32;
|
|
|
|
}
|
|
|
|
Perm {
|
2014-12-20 15:20:51 +13:00
|
|
|
cnt: [0; 16],
|
2014-09-04 18:45:11 -07:00
|
|
|
fact: fact,
|
|
|
|
n: n,
|
|
|
|
permcount: 0,
|
2014-12-20 15:20:51 +13:00
|
|
|
perm: P { p: [0; 16 ] }
|
2014-09-04 18:45:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get(&mut self, mut idx: i32) -> P {
|
2014-12-20 15:20:51 +13:00
|
|
|
let mut pp = [0u8; 16];
|
2014-09-04 18:45:11 -07:00
|
|
|
self.permcount = idx as u32;
|
2014-09-14 20:27:36 -07:00
|
|
|
for (i, place) in self.perm.p.iter_mut().enumerate() {
|
2014-09-04 18:45:11 -07:00
|
|
|
*place = i as i32 + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for i in range(1, self.n as uint).rev() {
|
|
|
|
let d = idx / self.fact[i] as i32;
|
|
|
|
self.cnt[i] = d;
|
|
|
|
idx %= self.fact[i] as i32;
|
2014-09-24 23:41:09 +12:00
|
|
|
for (place, val) in pp.iter_mut().zip(self.perm.p[..i+1].iter()) {
|
2014-09-04 18:45:11 -07:00
|
|
|
*place = (*val) as u8
|
2013-04-17 14:19:25 -07:00
|
|
|
}
|
2014-09-04 18:45:11 -07:00
|
|
|
|
|
|
|
let d = d as uint;
|
|
|
|
for j in range(0, i + 1) {
|
|
|
|
self.perm.p[j] = if j + d <= i {pp[j + d]} else {pp[j+d-i-1]} as i32;
|
2014-02-21 15:41:51 -08:00
|
|
|
}
|
|
|
|
}
|
2013-04-17 14:19:25 -07:00
|
|
|
|
2014-09-04 18:45:11 -07:00
|
|
|
self.perm
|
|
|
|
}
|
|
|
|
|
|
|
|
fn count(&self) -> u32 { self.permcount }
|
|
|
|
fn max(&self) -> u32 { self.fact[self.n as uint] }
|
|
|
|
|
|
|
|
fn next(&mut self) -> P {
|
2014-11-17 21:39:01 +13:00
|
|
|
next_permutation(&mut self.perm.p, &mut self.cnt);
|
2014-09-04 18:45:11 -07:00
|
|
|
self.permcount += 1;
|
|
|
|
|
|
|
|
self.perm
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn reverse(tperm: &mut [i32], mut k: uint) {
|
2014-12-19 12:44:24 +13:00
|
|
|
tperm.slice_to_mut(k).reverse()
|
2014-09-04 18:45:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn work(mut perm: Perm, n: uint, max: uint) -> (i32, i32) {
|
|
|
|
let mut checksum = 0;
|
|
|
|
let mut maxflips = 0;
|
|
|
|
|
|
|
|
let mut p = perm.get(n as i32);
|
|
|
|
|
|
|
|
while perm.count() < max as u32 {
|
|
|
|
let mut flips = 0;
|
|
|
|
|
|
|
|
while p.p[0] != 1 {
|
|
|
|
let k = p.p[0] as uint;
|
2014-11-17 21:39:01 +13:00
|
|
|
reverse(&mut p.p, k);
|
2014-09-04 18:45:11 -07:00
|
|
|
flips += 1;
|
2013-04-17 14:19:25 -07:00
|
|
|
}
|
2014-09-04 18:45:11 -07:00
|
|
|
|
|
|
|
checksum += if perm.count() % 2 == 0 {flips} else {-flips};
|
|
|
|
maxflips = cmp::max(maxflips, flips);
|
|
|
|
|
|
|
|
p = perm.next();
|
2013-04-17 14:19:25 -07:00
|
|
|
}
|
2014-09-04 18:45:11 -07:00
|
|
|
|
|
|
|
(checksum, maxflips)
|
2013-04-17 14:19:25 -07:00
|
|
|
}
|
|
|
|
|
2014-09-04 18:45:11 -07:00
|
|
|
fn fannkuch(n: i32) -> (i32, i32) {
|
|
|
|
let perm = Perm::new(n as u32);
|
|
|
|
|
|
|
|
let N = 4;
|
|
|
|
let mut futures = vec![];
|
|
|
|
let k = perm.max() / N;
|
|
|
|
|
|
|
|
for (i, j) in range(0, N).zip(iter::count(0, k)) {
|
|
|
|
let max = cmp::min(j+k, perm.max());
|
|
|
|
|
2014-11-26 08:12:18 -05:00
|
|
|
futures.push(Future::spawn(move|| {
|
2014-09-04 18:45:11 -07:00
|
|
|
work(perm, j as uint, max as uint)
|
|
|
|
}))
|
2014-04-20 01:32:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut checksum = 0;
|
2014-09-04 18:45:11 -07:00
|
|
|
let mut maxflips = 0;
|
2014-09-14 20:27:36 -07:00
|
|
|
for fut in futures.iter_mut() {
|
2014-09-04 18:45:11 -07:00
|
|
|
let (cs, mf) = fut.get();
|
|
|
|
checksum += cs;
|
|
|
|
maxflips = cmp::max(maxflips, mf);
|
2014-04-20 01:32:54 +02:00
|
|
|
}
|
2014-09-04 18:45:11 -07:00
|
|
|
(checksum, maxflips)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let n = std::os::args().as_slice()
|
|
|
|
.get(1)
|
|
|
|
.and_then(|arg| from_str(arg.as_slice()))
|
|
|
|
.unwrap_or(2i32);
|
|
|
|
|
|
|
|
let (checksum, maxflips) = fannkuch(n);
|
|
|
|
println!("{}\nPfannkuchen({}) = {}", checksum, n, maxflips);
|
2013-04-17 14:19:25 -07:00
|
|
|
}
|