simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

composition.js (483B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.compositionDocs = void 0;
      7 var compositionDocs = {
      8   name: 'composition',
      9   category: 'Combinatorics',
     10   syntax: ['composition(n, k)'],
     11   description: 'The composition counts of n into k parts. composition only takes integer arguments. The following condition must be enforced: k <= n.',
     12   examples: ['composition(5, 3)'],
     13   seealso: ['combinations']
     14 };
     15 exports.compositionDocs = compositionDocs;