This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::{os, vec,comm}; | |
static NUM_TA: uint = 1000; | |
static NUM_CORES: uint = 4; | |
static NUM_TB: uint = 50_000; | |
#[deriving(Clone)] | |
struct TypeB { a: uint, b: uint, c: uint, d: uint} | |
#[deriving(Clone)] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::{os, vec,comm}; | |
static TILE_DIM: uint = 50; | |
static MIN_WID: uint = 2; | |
static MAX_WID: uint = 8; | |
static NUM_LEVS: uint = 1000; | |
static NUM_CORES: uint = 4; | |
static NUM_TRIES: uint = 50_000; |
NewerOlder