total-serialism
Advanced tools
Comparing version
@@ -93,2 +93,22 @@ //============================================================================== | ||
} | ||
exports.dice = dice; | ||
exports.dice = dice; | ||
// shuffle a list, based on the | ||
// Fisher-Yates shuffle algorithm | ||
// by Ronald Fisher and Frank Yates in 1938 | ||
// algorithm has run time complexity of O(n) | ||
// | ||
// @param {Array} -> array to shuffle | ||
// @return {Array} | ||
// | ||
function shuffle(a=[0]){ | ||
var arr = a.slice(); | ||
for (var i=arr.length-1; i>0; i-=1) { | ||
var j = Math.floor(rng() * (i + 1)); | ||
var t = arr[i]; | ||
arr[i] = arr[j]; | ||
arr[j] = t; | ||
} | ||
return arr; | ||
} | ||
exports.shuffle = shuffle; |
@@ -195,22 +195,2 @@ //============================================================================== | ||
// shuffle a list, based on the | ||
// Fisher-Yates shuffle algorithm | ||
// by Ronald Fisher and Frank Yates in 1938 | ||
// algorithm has run time complexity of O(n) | ||
// | ||
// @param {Array} -> array to shuffle | ||
// @return {Array} | ||
// | ||
function shuffle(a=[0]){ | ||
var arr = a.slice(); | ||
for (var i=arr.length-1; i>0; i-=1) { | ||
var j = Math.floor(Math.random() * (i + 1)); | ||
var t = arr[i]; | ||
arr[i] = arr[j]; | ||
arr[j] = t; | ||
} | ||
return arr; | ||
} | ||
exports.shuffle = shuffle; | ||
// spray the values of one array on the | ||
@@ -217,0 +197,0 @@ // places of values of another array if |
{ | ||
"name": "total-serialism", | ||
"version": "1.1.1", | ||
"version": "1.2.1", | ||
"description": "A set of methods for the generation and transformation of number sequences useful in algorithmic composition", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -86,2 +86,5 @@ # Total Serialism | ||
Rand.dice(4); //=> [4, 4, 2, 3] | ||
// shuffle the items in an array, influenced by the random seed | ||
Rand.shuffle([0, 5, 7, 12]); //=> [7, 5, 0, 12] | ||
``` | ||
@@ -124,5 +127,2 @@ | ||
// shuffle the items in an array (Fisher-Yates shuffle algorithm) | ||
Mod.shuffle([0, 5, 7, 12]); //=> [7, 5, 0, 12] | ||
// spray values from one array on the non-zero places of another array | ||
@@ -129,0 +129,0 @@ Mod.spray([12, 19, 24], [1, 0, 0, 1, 1, 0, 1, 0.3, 0]); |
@@ -77,2 +77,13 @@ | ||
test("Rand.dice(4)"); | ||
// var shufArr = [0, 5, 7, 12]; | ||
// console.log(Mod.shuffle(shufArr)); | ||
// console.log(shufArr); | ||
test("Rand.shuffle()"); | ||
test("Rand.seed(1473)"); | ||
test("Rand.shuffle([0, 5, 7, 12])"); | ||
test("Rand.shuffle([0, 5, 7, 12])"); | ||
test("Rand.seed(1473)"); | ||
test("Rand.shuffle([0, 5, 7, 12])"); | ||
} | ||
@@ -163,9 +174,2 @@ | ||
// var shufArr = [0, 5, 7, 12]; | ||
// console.log(Mod.shuffle(shufArr)); | ||
// console.log(shufArr); | ||
test("Mod.shuffle()"); | ||
test("Mod.shuffle([0, 5, 7, 12])"); | ||
test("Mod.shuffle([0, 5, 7, 12])"); | ||
// var sprArr1 = [12, 19, 24]; | ||
@@ -172,0 +176,0 @@ // var sprArr2 = [1, 0, 0, 1, 1, 0, 1, 0, 0.2]; |
38293
0.22%983
0.31%