Skip to content
Snippets Groups Projects
  1. Jun 12, 2016
    • Liam M. Healy's avatar
      Add Monte Carlo parameter setting · bcde4754
      Liam M. Healy authored
      With GSL 1.13, the GSL API defines a way to set the parameters for the
      MISER and VEGAS Monte Carlo methods. This commit defines two generic
      functions, #'parameter and #'(setf parameter), to get and set the
      parameters, respectively.  It loads but has not been tested.
      
      The previous way of setting the parameters, with macros
      > #'miser-parameter and #'vegas-parameter, are conditional to
      > #+obsolete-gsl and so do not normally load.
      bcde4754
  2. Jan 20, 2016
  3. Dec 29, 2015
  4. Dec 24, 2015
  5. Dec 06, 2015
  6. Oct 05, 2015
  7. Aug 24, 2015
  8. Aug 02, 2015
  9. Jun 02, 2015
  10. Apr 06, 2015
  11. Jan 23, 2015
  12. Jan 22, 2015
    • Eugene Zhemchugov's avatar
      Make callbacks reentrant · 9c043926
      Eugene Zhemchugov authored
      Rebind callback dynamic variables upon entry into the callback function.
      With this fix callbacks can be called recursively.
      9c043926
  13. Dec 27, 2014
  14. Dec 11, 2014
  15. Oct 17, 2014
  16. Mar 06, 2014
  17. Feb 22, 2014
    • Liam M. Healy's avatar
      Add 2D histogram definitions · 9857f92c
      Liam M. Healy authored
      Add methods/functions for increment, range, max-range, min-range,
      grid:dimensions. This should complete the needed functions for 2D. It
      compiles, but nothing is tested.
      9857f92c
  18. Feb 18, 2014
  19. Feb 16, 2014
  20. Feb 10, 2014
  21. Jan 22, 2014
  22. Dec 26, 2013
  23. Dec 25, 2013
  24. Dec 10, 2013
  25. Nov 29, 2013
  26. Nov 25, 2013
  27. Oct 04, 2013
    • Liam M. Healy's avatar
      Add direct foreign-vector view of 1D histograms · b2f6ae1f
      Liam M. Healy authored
      Defined two functions, view-range-as-foreign-array and view-bin-as-foreign-array that proved direct foreign-vector view of 1D histograms (shared data memory with the foreign histogram). This maybe be a precursor to some eventual generic "view" function, so the function symbols are not exported yet as the name may change. Also, the defcstruct should be done as a grovel on the C header. However, the functions do work now.
  28. May 07, 2013
  29. Apr 28, 2013
    • Liam M. Healy's avatar
      Updated documentation · e11638d2
      Liam M. Healy authored
      Updated documentation: eliminate reference FSBV, new mailing list information since common-lisp.net changed mailing list managers.
      e11638d2
  30. Mar 05, 2013
  31. Mar 02, 2013
  32. Jan 02, 2013
  33. Dec 31, 2012
  34. Nov 18, 2012
    • Liam M. Healy's avatar
      Substitute for dim0 and dim1 in funcallables when scalarsp=NIL · 127d3d02
      Liam M. Healy authored
      Previously, the funcallable form made by #'make-funcallable-form (for
      e.g. ODE solvers) when scalarsp=T involved substituting the symbols
      'dim0 and 'dim1, but when scalarsp=NIL, would not do the substitution.
      This caused an error when those unevaluated and unbound symbols
      appeared in the lambda.  By altering #'faify-form with an additional
      'dimension-values argument and calling 
      (value-from-dimensions argspec dimension-values) 
      instead of 
      (parse-callback-argspec argspec 'dimensions), 
      this problem is fixed.
      127d3d02
  35. Feb 19, 2012
  36. Jan 13, 2012
Loading