~ubuntu-branches/ubuntu/precise/csound/precise

« back to all changes in this revision

Viewing changes to frontends/CsoundAC/Random.hpp

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2012-04-19 09:26:46 UTC
  • mfrom: (3.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20120419092646-96xbj1n6atuqosk2
Tags: 1:5.17.6~dfsg-1
* New upstream release
 - Do not build the wiimote opcodes (we need wiiuse).
* Add new API function to symbols file
* Disable lua opcodes, they were broken. Requires OpenMP to be enabled.
* Backport fixes from upstream:
  - Link dssi4cs with dl. Backport
  - Fix building of CsoundAC

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
   * for each of eventCount samples,
48
48
   * which will be transformed by the newly sampled local coordinates.
49
49
   */
50
 
  class Random :
 
50
  class SILENCE_PUBLIC Random :
51
51
    public Node
52
52
  {
53
53
  protected:
85
85
    virtual double sample() const;
86
86
    virtual ublas::matrix<double> getRandomCoordinates() const;
87
87
    virtual void createDistribution(std::string distribution);
88
 
    virtual void produceOrTransform(Score &score, size_t beginAt, size_t endAt, 
 
88
    virtual void produceOrTransform(Score &score, size_t beginAt, size_t endAt,
89
89
                                    const ublas::matrix<double> &compositeCoordinates);
90
90
    static void seed(int s);
91
91
  };