Google Code Exporter
Google Code Exporter
``` What steps will reproduce the problem? 1. Run a Python script (OK) with 2. Import minuit (OK) and 3.execute any minuit command (e.g. minuit.Minuit(something)) What is the expected output?...
``` What steps will reproduce the problem? 1. sh configure 2. make 3. What is the expected output? files found. What do you see instead? $ make make all-recursive make[1]:...
``` I wonder if it could be possible to allow callable classes. I tried this code and get the error: $ python fit.py Traceback (most recent call last): File "fit.py",...
``` Running make I get the following error: MnUserTransformation.cpp:30: error: 'sprintf' is not a member of 'std' This was quickly fixed by adding the line: #include to right below '#include...
``` What steps will reproduce the problem? 1. cd /pyminuit-1.1.1/pyminuit 2. python setup.py install build -c mingw32 --with-minuit=/cygdrive/c/Minuit-1_7_9 3. What is the expected output? What do you see instead? not...
``` Originally submitted by iamholger Hi, Andy directed me here. PyMinuit handles multiple parameters easily - but only if the definition of the function to minimize is fixed. E.g. a...
``` What steps will reproduce the problem? 1. Build as described! What is the expected output? What do you see instead? Expect a clean build, but there are warnings about...
``` What steps will reproduce the problem? 1. Install Minuit to a non-standard location 2. Run PyMinuit's "setup.py install" What is the expected output? What do you see instead? I...
``` What steps will reproduce the problem? #!/usr/bin/python import minuit class program: def __init__(self): m = minuit.Minuit(self.f) print m.parameters m.migrad() def f(self, x, y): return (x+3)**2 + (y-4)**2 p =...
``` What steps will reproduce the problem? 1. Import minuit in python command line 2. 3. What is the expected output? What do you see instead? Traceback (most recent call...