libcerf (D sources)

2014-09-21 Thread Ilya Yaroshenko via Digitalmars-d-announce
Self-contained numeric library that provides an efficient and 
accurate implementation of complex error functions, along with 
Dawson, Faddeeva, and Voigt functions.


https://github.com/9il/libcerf


[OT] Re: libcerf (D sources)

2014-09-21 Thread ponce via Digitalmars-d-announce
On Sunday, 21 September 2014 at 16:12:08 UTC, Ilya Yaroshenko 
wrote:
Self-contained numeric library that provides an efficient and 
accurate implementation of complex error functions, along with 
Dawson, Faddeeva, and Voigt functions.


https://github.com/9il/libcerf


The error function is used for Gaussian integrals, where should 
we use the Dawson, Faddeeva, and Voigt functions? Just curious.


Re: [OT] Re: libcerf (D sources)

2014-09-21 Thread Ilya Yaroshenko via Digitalmars-d-announce

Computation of complex error functions based on Faddeeva function.
See: http://ab-initio.mit.edu/wiki/index.php/Faddeeva_Package

I need this functions to compute integrals for new numeric 
methods in statistics.


On Sunday, 21 September 2014 at 16:14:30 UTC, ponce wrote:
On Sunday, 21 September 2014 at 16:12:08 UTC, Ilya Yaroshenko 
wrote:
Self-contained numeric library that provides an efficient and 
accurate implementation of complex error functions, along with 
Dawson, Faddeeva, and Voigt functions.


https://github.com/9il/libcerf


The error function is used for Gaussian integrals, where should 
we use the Dawson, Faddeeva, and Voigt functions? Just curious.




I am selling my programming language blog

2014-09-21 Thread Suliman via Digitalmars-d-announce
I decided to sell of all my sited, to free my mind for a new 
projects.

One of my site is a little bit related with programming languages.

the name is: versusit.org

blog have few aricles about C++ and D.

The price is 100$ + small mention about me as about project 
founder on About Page.


Re: Digger 1.0

2014-09-21 Thread Rainer Schuetze via Digitalmars-d-announce



On 19.09.2014 03:36, Vladimir Panteleev wrote:

Most notable change since DConf is that on Windows, Digger can now build
D from source (including x64 versions) without requiring Git or Visual
Studio to be installed. It achieves this by downloading and locally
installing (unpacking) all the software it needs.

Windows binaries:

https://github.com/CyberShadow/Digger/releases/tag/1.0

Digger is a tool for working with D's source code and its history. It
can build D (including older D versions), customize the build with
pending pull requests or forks, and find the exact pull request which
introduced a regression (or fixed a bug). It comes together with a web
interface which makes building D from source trivial even for people new
to D, Git or the command line.

https://github.com/CyberShadow/Digger


I tried it on Windows and Digger does an amazing job at installing 
dependencies. I think we should recommend it as the first thing to run 
when trying to get your hands on building dmd/phobos.


In case someone starts creating patches: Would it be possible to also 
write a batch file into the repository folder to redo a build of dmd, 
druntime and phobos without checking all the dependencies?


How about running the test suite?


Re: Digger 1.0

2014-09-21 Thread Rikki Cattermole via Digitalmars-d-announce
On Sunday, 21 September 2014 at 17:43:14 UTC, Rainer Schuetze 
wrote:

How about running the test suite?


+1
Would make me far more happier of starting seriously getting into 
dmd bug fixing.