С Новым годом! Форум программистов, компьютерный форум, киберфорум
С++ для начинающих
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
0 / 0 / 0
Регистрация: 24.09.2007
Сообщений: 16
1

prototype for ... does not match any in class ...

27.02.2010, 02:15. Показов 7587. Ответов 0
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Все привет. Компилирую программу - получаю подобного рода ошибки:

C++
1
2
3
4
src/coral/Inverting/bspline_imager1d.cc:64: error: prototype for 'bool CBasisSplineImager1d::convertCorrelationToSource(const CCorrFtn1dHisto&, CSourceFtnBase&, const parameterMap&)' does not match any in class 'CBasisSplineImager1d'
src/coral/Inverting/bspline_imager1d.cc:75: error: prototype for 'bool CBasisSplineImager1d::convertSourceToCorrelation(const CSourceFtnBase&, CCorrFtn1dHisto&, const parameterMap&)' does not match any in class 'CBasisSplineImager1d'
src/coral/Inverting/bspline_imager1d.cc:343: error: prototype for 'void CBasisSplineImager1d::set_no_data(CSourceFtnBase&)' does not match any in class 'CBasisSplineImager1d'
src/coral/Inverting/bspline_imager1d.cc:352: error: prototype for 'void CBasisSplineImager1d::initialize_source(const CCorrFtn1dHisto&, CSourceFtnBase&, const parameterMap&)' does not match any in class 'CBasisSplineImager1d'
Прототип и фукнция полностью идентичны. Что тут может быть - не знаю. Приведу на всякий случай код - попробуйте помочь (заголовки и функции выделил "!!!!" по левую сторону):

C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
------------bspline_imager1d.h--------------------
#ifndef SPLINEIMAGER1D_H
#define SPLINEIMAGER1D_H
 
#include <string>
#include "parametermap.h"
#include "basis_spline1d.h"
#include "basisfunc_imager1d.h"
 
#define __USE_GSL__
 
#ifdef __USE_GSL__
#include <gsl/gsl_multimin.h>
#endif
 
using namespace std;
using namespace TNT;
 
 
//----------------- zero_struct ---------------------------
//! helper struct for get_zeros function
struct zero_struct{
    double result;
    bool iszero;
};
 
//------------------------------------------
// Main imaging code
//------------------------------------------
class CBasisSplineImager1d: public CBasisFuncImager1d{
 
public:
    
    // Constructors
    CBasisSplineImager1d( void ):
        CBasisFuncImager1d(),
        qscale(50.),
        spline_degree(3),
        knot_tolerance(0.01),
        knot_init_scheme("default"),
        optimize_knots(false),
        optimize_knots_max_iter(500),
        optimize_knots_minimizer_func_weight(1.),
        optimize_knots_coellesce_knot_tol(0.01),
        optimize_knots_simplex_min_size(0.01),
        colloc_pts(0),
        user_knots(0),
        souWork(){}
 
    // Destructors
    ~CBasisSplineImager1d( void ){}
 
    // Read/write to parameter map
    bool Read( const parameterMap& m );
    bool Write( parameterMap& m );
 
    // routines that do the actual (un)inversion
[B]"!!!!!"[/B]
  bool convertCorrelationToSource( const CCorrFtn1dHisto& corrin, CSourceFtnBase& souout, const parameterMap& m );
[B]"!!!!!"[/B]
    bool convertSourceToCorrelation( const CSourceFtnBase& souin, CCorrFtn1dHisto& corrout, const parameterMap& m );
    double imageit(CBasisFunctionExpansion1d& souout);
 
    // data for creating new source(s), correlation(s)
    double qscale;
    int    spline_degree;
    double knot_tolerance;
 
    // controls over knots
    string knot_init_scheme;
    bool   optimize_knots;
    int    optimize_knots_max_iter;
    double optimize_knots_minimizer_func_weight;
    double optimize_knots_coellesce_knot_tol;
    double optimize_knots_simplex_min_size;
 
    // vector for collocation points
    vector< double > colloc_pts;
 
    // vector of knots set by user
    vector< double > user_knots;
                
    // Disposible working source instance
    CBasisSpline1d souWork;
    
    // override this to make sure knots get initialized correctly
[B]"!!!!!"[/B]
    void set_no_data( CSourceFtnBase& souout );
[B]"!!!!!"[/B]
    void initialize_source( const CCorrFtn1dHisto& corrin, CSourceFtnBase& souout, const parameterMap& m );
 
    // routines to set the knots
    void set_knots(CBasisSpline1d& souout);
    void set_knots_default(CBasisSpline1d& souout);
    void set_knots_from_colloc_points(CBasisSpline1d& souout);
    void set_knots_user_defined(CBasisSpline1d& souout);
 
    // routines to set the knots using the sampling theorem
    void set_colloc_sampling_thm(void);
    vector< double > get_zeros(double q, int nZeros, int l, double eps=1e-2);
    zero_struct find_zero(double xmin, double xmax, double q, int l, double eps);
 
    // routines to image and optimize knots
    double do_optimal_knots(CBasisSpline1d& souout);
#ifdef __USE_GSL__
    static double static_imageit(const gsl_vector *variableKnots, void* classPtr);
#endif
};
 
#endif
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
----------------------------------------bspline.cc--------------------------------------------
 
#include "message.h"
#include "parametermap.h"
#include "constants.h"
#include "utils.h"
#include "linalg.h"
#include "lsqrinvert.h"
#include "bspline_imager1d.h"
 
using namespace TNT;
using namespace std;
 
#define __USE_GSL__
 
#define __IMAGER_EPSILON 1e-10
#define __TYPICAL_SOURCE_SCALE__ 1e-4 //in fm^-3
 
 
//---------------- Read ----------------------------
bool CBasisSplineImager1d::Read( const parameterMap& m ){
 
    CBasisFuncImager1d::Read( m );
    qscale                      = parameter::getD(m,"qscale",50.);
//    spline_degree               = parameter::getI(m,"spline_degree",3);
    knot_tolerance              = parameter::getD(m,"knot_tolerance",1e-2);
    knot_init_scheme            = parameter::getS(m,"knot_init_scheme","default");
    optimize_knots              = parameter::getB(m,"optimize_knots",false);
    if (optimize_knots) {
        optimize_knots_max_iter                 = parameter::getB(m,"optimize_knots_max_iter",optimize_knots_max_iter);
        optimize_knots_minimizer_func_weight    = parameter::getB(m,"optimize_knots_minimizer_func_weight",optimize_knots_minimizer_func_weight);
        optimize_knots_coellesce_knot_tol       = parameter::getB(m,"optimize_knots_coellesce_knot_tol",optimize_knots_coellesce_knot_tol);
        optimize_knots_simplex_min_size         = parameter::getB(m,"optimize_knots_simplex_min_size",optimize_knots_simplex_min_size);
    }
    vector< double > empty_vec(0);
    if (knot_init_scheme == "user_defined_collocation_points") {
        colloc_pts = parameter::getV(m,"user_collocation_points",empty_vec);
    }
    if (knot_init_scheme == "user_defined_knots") {
        user_knots = parameter::getV(m,"user_knots",empty_vec);
    }
    return true;
}
 
//--------------- Write -----------------------------
// not used much except for diagnostics, so write everything!
bool CBasisSplineImager1d::Write( parameterMap& m ){
 
    CBasisFuncImager1d::Write( m );
    parameter::set(m,"qscale",qscale);
//    parameter::set(m,"spline_degree",spline_degree);
    parameter::set(m,"knot_tolerance",knot_tolerance);
    parameter::set(m,"knot_init_scheme",knot_init_scheme);
    parameter::set(m,"optimize_knots",optimize_knots);
    parameter::set(m,"optimize_knots_max_iter",optimize_knots_max_iter);
    parameter::set(m,"optimize_knots_minimizer_func_weight",optimize_knots_minimizer_func_weight);
    parameter::set(m,"optimize_knots_coellesce_knot_tol",optimize_knots_coellesce_knot_tol);
    parameter::set(m,"optimize_knots_simplex_min_size",optimize_knots_simplex_min_size);
    parameter::set(m,"user_collocation_points",colloc_pts);
    parameter::set(m,"user_knots",user_knots);
    return true;
}
    
//---------------- convertCorrelationToSource ----------------------------
//! function that manages the imaging
[B]"!!!!!"[/B]
bool CBasisSplineImager1d::convertCorrelationToSource( const CCorrFtn1dHisto& corrin, CSourceFtnBase& souout, const parameterMap& m ){
 
    CBasisSpline1d* souPtr = dynamic_cast<CBasisSpline1d*>(&souout);
    if (souPtr==NULL) throw MESSAGE<<"Source argument must derive from CBasisSpline1d"<<ENDM_FATAL;
    bool result = CBasisFuncImager1d::convertCorrelationToSource( corrin, souout, m );
    if (optimize_knots && result) do_optimal_knots( *souPtr ); 
    return result;
}
 
//---------------- convertSourceToCorrelation ----------------------------
//! function that manages the unimaging
[B]"!!!!!"[/B]
bool CBasisSplineImager1d::convertSourceToCorrelation( const CSourceFtnBase& souin, CCorrFtn1dHisto& corrout, const parameterMap& m ){
 
    return CBasisFuncImager1d::convertSourceToCorrelation( souin, corrout, m );
}
 
//--------------------- imageit ---------------------------
//! Code to image a 1d source, with equality constraints
double CBasisSplineImager1d::imageit(CBasisFunctionExpansion1d& souout){
 
    CBasisSpline1d* souPtr = dynamic_cast<CBasisSpline1d*>(&souout);
    if (souPtr==NULL) throw MESSAGE<<"Source argument must derive from CBasisSpline1d"<<ENDM_FATAL;
 
    // Image using the generic code or optimize knots
    double chi2 = CBasisFuncImager1d::imageit( *souPtr );
 
    // Compute final summed relative error of source (to emulate old "optimal knot" behavior)
    double relerr=0.0;
    for (int i=0;i<souout.ndata;++i){relerr+=abs(souout.data[i]/sqrt(souout.covmtx[i][i]));}
    
    // Compute the "figure of merit" that we'll minimize when doing the optimal knots
    return chi2 + optimize_knots_minimizer_func_weight * relerr;
}
 
//-------------------- do_optimal_knots ----------------------------
double CBasisSplineImager1d::do_optimal_knots(CBasisSpline1d& souout){
#ifdef __USE_GSL__
 
    // don't have to set souWork because we already ran imageit once
    // souWork.CopyState(souout);
 
    /* variable declarations */
    cout << "  Performing knot optimization"<<endl;
    size_t nVarKnots = ndata_sou-(spline_degree+1);
    const gsl_multimin_fminimizer_type *T = gsl_multimin_fminimizer_nmsimplex;
    gsl_multimin_fminimizer *s = NULL;
    gsl_vector *ss, *x;
    gsl_multimin_function minex_func;
    size_t iter = 1, i;  // we already ran imageit once, so set iter to 1
    int status;
    double size;
 
    /* Initial vertex size vector */
    ss = gsl_vector_alloc (nVarKnots);
 
    /* Set all step sizes to ?? */
    double dxKnots=(rmax)/(nVarKnots+1);
    gsl_vector_set_all (ss, 0.75*dxKnots);
 
    /* Starting point */
    x = gsl_vector_alloc (nVarKnots);
    for (unsigned int i=0;i<nVarKnots;++i) gsl_vector_set(x, i, souout.knots[i+spline_degree+1]);
    cout << "    Variable knots initialized"<<endl;
 
    /* Initialize method */
    minex_func.f = &static_imageit;
    minex_func.n = nVarKnots;
    minex_func.params = (void *)this;
    s = gsl_multimin_fminimizer_alloc (T, nVarKnots);
    gsl_multimin_fminimizer_set (s, &minex_func, x, ss);
    cout << "    Simplex minimizer initialized"<<endl;
 
    /* Iterate */
    do {
        iter++;
        status = gsl_multimin_fminimizer_iterate(s);
      
        if (status) break;
 
        size = gsl_multimin_fminimizer_size (s);
        status = gsl_multimin_test_size (size, 1e-2);
 
        if (status == GSL_SUCCESS) printf ("converged to minimum at\n");
 
        printf ("%5d ", int(iter));
        for (i = 0; i < nVarKnots; i++) printf ("%12.5e ", gsl_vector_get (s->x, i));
        
        printf ("f() = %7.3f size = %.3f\n", s->fval, size);
    } while (status == GSL_CONTINUE && iter < 200);
    
    gsl_vector_free(x);
    gsl_vector_free(ss);
    gsl_multimin_fminimizer_free (s);
 
    souout.CopyState(souWork);
    return (double)(status);
 
#else
 
    return imageit(souout);
 
#endif
}
 
//-------------------- static_imageit ----------------------------
//! Wrapper to imageit that we can use to do optimization
//! using GSL.  Also, recomputes losource's knots using
//! the variable knots in variableKnots, handed to this
//! routine by the gsl minimizer
double CBasisSplineImager1d::static_imageit(const gsl_vector *variableKnots, void* classPtr){
 
#ifdef __USE_GSL__
    CBasisSplineImager1d *cls = (CBasisSplineImager1d*)classPtr;
 
    // compute number of knots we can vary.  if this doesn't match the 
    // dimensions of variableKnots, we are screwed
    int nVarKnots=cls->ndata_sou-(cls->spline_degree+1);
 
    // set the knots 
    vector<double> myKnots(cls->ndata_sou+cls->spline_degree+1);
    for (int i=0;i<cls->spline_degree+1;++i) {
        myKnots[i]=cls->rmin;
        myKnots[cls->ndata_sou+cls->spline_degree-i]=cls->rmax;
    }
    for (int i=0;i<nVarKnots;++i) {
        while( (myKnots[cls->spline_degree+1+i]>cls->rmax) || (myKnots[cls->spline_degree+1+i]<cls->rmin) ) {
            myKnots[cls->spline_degree+1+i] =
                mod( abs(gsl_vector_get(variableKnots,i)), cls->rmax-cls->rmin ) + cls->rmin;
        }
    }
    sort(myKnots.begin(),myKnots.end());
    
    // Redimension souWork to accomodate the new knots
    cls->souWork.setDim( myKnots.size() - cls->souWork.spline_degree - 1 );
 
    // Now put in the new knots
    cls->souWork.knots = stl2tntVec(myKnots);
 
    // re-build the Kmtx
    parameterMap dummyMap;
    cls->set_kmtx(cls->corrwork,cls->souWork,dummyMap);
    
    // Now image the source.  
    return cls->imageit(cls->souWork); 
 
#else
 
    return 0.;
 
#endif
 
}
 
//------------------ set_knots --------------------------
//! master knot initializer routine
void CBasisSplineImager1d::set_knots(CBasisSpline1d& souout){
 
    // figure out if we have to use the default scheme instead of alternate
    if (knot_init_scheme=="sampling_thm") {
        if (spline_degree == 0){
            MESSAGE << "Requesting Spline degree = 0, so using default knots\n" <<ENDM_WARN;
            knot_init_scheme="default";
            ndata_sou=std::max(std::min(ndata_corr,ndata_sou),spline_degree+1);
        } 
        else if (kernel_particle1!=kernel_particle2){
            MESSAGE << "Sampling theorem doen't work on unlike pairs" <<ENDM_WARN;
            knot_init_scheme="default";
        } 
    }
 
    // these two make knots directly
    if (knot_init_scheme=="default") 
        set_knots_default(souout);
    else if (knot_init_scheme=="user_defined_knots") 
        set_knots_user_defined(souout);
    // these two make collocation points which must be converted to knots
    else if (knot_init_scheme=="sampling_thm") {
        set_colloc_sampling_thm();
        set_knots_from_colloc_points(souout);
    }
    else if (knot_init_scheme=="user_defined_collocation_points") 
        set_knots_from_colloc_points(souout);
    // default to this one
    else 
        set_knots_default(souout);
}
 
//------------------- set_knots_default -------------------------
void CBasisSplineImager1d::set_knots_default( CBasisSpline1d& souout ){
 
    cout << "  Default source knot initialization\n";
    // make a temp spline w/ correct dimensions, copy temp bspline into working source
    ndata_sou=std::min(static_cast<int>(ndata_corr/1.5),souout.ndata); //override if ndata_out unreasonable
    if (ndata_sou != souout.ndata){
        MESSAGE << "Number of coefficients requested is too big, lowering to "<<ndata_sou<<ENDM_WARN;
        souout.setDim( ndata_sou );
    }
    rmin = souout.xmin;
    rmax = souout.xmax;
    souout.setDefaultKnots();
}
 
//------------------- set_colloc_sampling_thm -------------------------
void CBasisSplineImager1d::set_colloc_sampling_thm( void ){
 
    static int maxnumzeros=40;
 
    cout << "   Using Sampling theorem to guess collocation points\n";
    cout << "       Getting zeroes from kernel\n";
    
    // get true zeros of wavefunction for collocation points
    vector<double> zeros(get_zeros(qscale,maxnumzeros,l));
 
    // make temp list ot r collocation points
    vector<double> tmp_rcolloc(1,rmin);
 
    // prune list of zeros to get only collocation points w/ r < _rmax
    for (int i=0;i<static_cast<int>(zeros.size());i++) {
        if ((zeros[i]<rmax)&&(zeros[i]>rmin)) tmp_rcolloc.push_back(zeros[i]);
    }
 
    // add last element
    tmp_rcolloc.push_back(rmax);
 
    // make sure list sorted
    sort(tmp_rcolloc.begin(),tmp_rcolloc.end());
 
    // save the collocation points
    colloc_pts = tmp_rcolloc;
}
 
//------------------- set_knots_from_colloc_points -------------------------
void CBasisSplineImager1d::set_knots_from_colloc_points( CBasisSpline1d& souout ){
 
    cout << endl;
    cout << "    Converting collocation points into knots\n";
    cout << "    Pre-thin collocation points:\n";
    for (int i=0;i<static_cast<int>(colloc_pts.size());++i){
        cout <<"        "<< i << " " << colloc_pts[i]<<endl;
    }
 
    // thin tmp_rcolloc
    vector<double> rcolloc(1,colloc_pts[0]);
    int nave=1;
    for (int i=1;i<static_cast<int>(colloc_pts.size());++i) {
        if (abs(colloc_pts[i]-rcolloc.back())<knot_tolerance) {
            rcolloc.back() = (nave/(nave+1))*(rcolloc.back()+colloc_pts[i]/nave);           
            nave++;
        } else {
            rcolloc.push_back(colloc_pts[i]);
            nave=1;
        }
    }
    cout << "    Post-thin collocation points:\n";
    for (int i=0;i<static_cast<int>(rcolloc.size());i++){
        cout << "        "<<i << " " << rcolloc[i]<<endl;
    }
    
    // create a temp bspline and set the optimal knots using the collocation points above
    souout.setOptimalKnots(stl2tntVec(rcolloc));
    // Since bspline knot setup may override the number of coefficients 
    // (we may have asked for unreasonable number), we need to reset ndata_out
    ndata_sou = souout.ndata;
}
 
//------------------- set_knots_user_defined -------------------------
void CBasisSplineImager1d::set_knots_user_defined( CBasisSpline1d& souout ){
 
    // copy temp bspline into working source
    souout.setDim(user_knots.size()-souout.spline_degree-1);
    // set the knots 
    souout.knots = stl2tntVec(user_knots);
    // Since bspline knot setup may override the number of coefficients 
    // (the user may have botched to knots/coeffs count), 
    // we need to reset ndata_out
    ndata_sou = souout.ndata;
}
 
//------------------- set_no_data -------------------------
[B]"!!!!!"[/B]
void CBasisSplineImager1d::set_no_data( CSourceFtnBase& souout ){
 
    CBasisFuncImager1d::set_no_data( souout );
    CBasisSpline1d* souPtr = dynamic_cast<CBasisSpline1d*>(&souout);
    if (souPtr==NULL) throw MESSAGE<<"Source argument must derive from CBasisSpline1d"<<ENDM_FATAL;
    souPtr->setDefaultKnots(); // will give 0 everywhere outside this range anyway
}
 
//------------------- initialize_source -------------------------
[B]"!!!!!"[/B]
void CBasisSplineImager1d::initialize_source( const CCorrFtn1dHisto& corrin, CSourceFtnBase& souout, const parameterMap& m ){
 
    CBasisFuncImager1d::initialize_source(corrin,souout,m);
    CBasisSpline1d* souPtr = dynamic_cast<CBasisSpline1d*>(&souout);
    if (souPtr==NULL) throw MESSAGE<<"Source argument must derive from CBasisSpline1d"<<ENDM_FATAL;
    souPtr->Read(m);
    spline_degree=souPtr->spline_degree;
    set_knots(*souPtr);
}
 
//----------------- get_zeros ---------------------------
//!  Get list of first nZeros zeros for l<=lmax=rmax*q/hbarc
vector< double > CBasisSplineImager1d::get_zeros(double q, int nZeros, int l, double eps){
 
    vector<double> zeros;
    
    // if I did this right, this should be smaller than the spacing between any zeros
    double xstep=0.5/(2.0*q/HBARC);  
    
    double xmin = eps;
    double testlo;
    double testhi;
    
    zero_struct azero;
    
    while (static_cast<int>(zeros.size())<nZeros){
        testlo  = kernelPtr->GetValue(l,q,xmin); 
        testhi  = kernelPtr->GetValue(l,q,xmin+xstep);
 
        // Make sure lower point isn't a zero
        if ( abs(testlo) <= eps ) { 
            zeros.push_back(xmin);
            xmin+=xstep/2.0;
            
        } else {
 
            // Make sure upper point isn't a zero
            if ( abs(testhi) <= eps ) { 
                testlo  = kernelPtr->GetValue(l,q,xmin);
                testhi  = kernelPtr->GetValue(l,q,xmin+xstep/2.0);
            }
 
            // OK, now look for zeros on the current interval
            if ( testlo*testhi <= 0.) {
                azero=find_zero(xmin,xmin+xstep,q,l,eps);
                if (azero.iszero) zeros.push_back(azero.result);
            }
        }
        
        // ready for next step just past this zero
        xmin+=xstep;
    }
    return zeros;
}
 
//------------------- find_zero ------------------------
//!  Gets first zero between xmin & xmax, 
//!  starting at xmin.  l and q are fixed. 
zero_struct CBasisSplineImager1d::find_zero(double xmin, double xmax, double q, int l, double eps){
    int nsteps=10;
    double stepsize=(xmax-xmin)/nsteps,xleft,xright;
    zero_struct ans;
    for (int i=0;i<nsteps;++i){
        xleft=xmin+i*stepsize;
        xright=xleft+stepsize;
        if (kernelPtr->GetValue(l,q,xleft)*kernelPtr->GetValue(l,q,xright)<=0.){ // is sign change
            if (abs(xleft-xright)<eps) {
                ans.iszero = true;
                ans.result = (xleft+xright)/2.;
                return ans;
            }
            else return find_zero(xleft,xright,q,l,eps);
        }
    }
    
    // never get here, unless is no zero
    ans.result=rmax; 
    ans.iszero=false; 
    return ans; 
}
0
Programming
Эксперт
39485 / 9562 / 3019
Регистрация: 12.04.2006
Сообщений: 41,671
Блог
27.02.2010, 02:15
Ответы с готовыми решениями:

Prototype for 'PaintCreator::PaintCreator does not match any in class 'PaintCreator'
вот эта ошибка появляется в файл .cpp там где я определяю конструктор ...

Какой из методов рациональнее использовать: Array.prototype.indexOf() или String.prototype.indexOf()
функции передаётся буква алфавита в нижнем регистре и она должна вернуть следующую по очереди букву...

Что означает ошибка pascal: function header doesn't match any method of this class "fig.draw(Smallint,Smallint,Smallint,Smallint,Smallint,Small int
Что это значит?

Разъясните код пжлст(выдает ошибку:cannot convert from 'class std::list<class c_bullet *,class std::allocator<class c_bullet *> >::iterator' to 'int')
Есть такие строки: std::list&lt;c_bullet*&gt; Bullets; ... for(auto i = Bullets.begin(); i !=...

0
27.02.2010, 02:15
inter-admin
Эксперт
29715 / 6470 / 2152
Регистрация: 06.03.2009
Сообщений: 28,500
Блог
27.02.2010, 02:15
Помогаю со студенческими работами здесь

bad class file: C:Program FilesJavajre1.5.0_02lib t.jar(java/lang/Object.class) class file has wrong version 49.0, should be 48.0
написал тестовый td_jsp.jsp фаил -&gt;&gt; &lt;html&gt; &lt;head&gt;&lt;title&gt;JSP test&lt;/title&gt;&lt;/head&gt; ...

Задача: реализовать наследование: interface Сотрудник - class Инженер - class Руководитель.
Помогите решить задачу и объяснить. В Eclipse. Реализовать наследование: interface Сотрудник...

Непонятная ошибка: Exception class EClassNotFound with message 'Class TLabeledEdit not found'
Когда написал среду в Делфи для БД Access то при запуске выдает такую ошибку. project...

В чем отличие ref class от value class, где какой следует использовать?
САБЖ, мало по мало изучаю C++/CLI.. В голове каша, хотелось бы как то фундаментально осмыслить и...

Нужно обратиться к class CustomAdapter из static метода class HomeFragment
По нажатию на кнопку на экране выполняется следующий код: private...

Работа с class ами. Заполнение дин. массива типа class
Всем доброго времени суток! Это моя первая тема на этом сайте, поэтому если что извините меня (за...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
1
Ответ Создать тему
Новые блоги и статьи
Как проводить научные вычисления на Python
InfoMaster 15.01.2025
Python стал одним из наиболее востребованных языков программирования в области научных вычислений благодаря своей простоте, гибкости и обширной экосистеме специализированных библиотек. Научные. . .
Создание игры типа Minecraft на PyGame/Python: пошаговое руководство
InfoMaster 15.01.2025
В данном руководстве мы рассмотрим процесс создания игры в стиле Minecraft с использованием библиотеки PyGame на языке программирования Python. Этот проект идеально подходит как для начинающих. . .
Как создать свою первую игру в стиле Doom на Unreal Engine
InfoMaster 15.01.2025
Разработка шутера от первого лица в стиле классического Doom представляет собой увлекательное путешествие в мир игрового программирования, где сочетаются творческий подход и технические навыки. . . .
Параллельное программировани­е: основные технологии и принципы
InfoMaster 15.01.2025
Введение в параллельное программирование Параллельное программирование представляет собой фундаментальный подход к разработке программного обеспечения, который позволяет одновременно выполнять. . .
Как написать микросервис на C# с Kafka, MediatR, Redis и GitLab CI/CD
InfoMaster 15.01.2025
В современной разработке программного обеспечения микросервисная архитектура стала стандартом де-факто для создания масштабируемых и гибких приложений. Этот подход позволяет разделить сложную систему. . .
Что такое CQRS и как это реализовать на C# с MediatR
InfoMaster 15.01.2025
Концепция CQRS и её роль в современной разработке В современном мире разработки программного обеспечения архитектурные паттерны играют ключевую роль в создании масштабируемых и поддерживаемых. . .
Как настроить CI/CD с Azure DevOps
InfoMaster 15.01.2025
CI/ CD, или непрерывная интеграция и непрерывное развертывание, представляет собой современный подход к разработке программного обеспечения, который позволяет автоматизировать и оптимизировать процесс. . .
Как настроить CI/CD с помощью Jenkins
InfoMaster 15.01.2025
Введение в CI/ CD и Jenkins В современной разработке программного обеспечения непрерывная интеграция (CI) и непрерывная доставка (CD) стали неотъемлемыми элементами процесса создания качественных. . .
Как написать микросервис на Go/Golang с Kafka, REST и GitHub CI/CD
InfoMaster 14.01.2025
Определение микросервиса, преимущества использования Go/ Golang Микросервис – это архитектурный подход к разработке программного обеспечения, при котором приложение состоит из небольших, независимо. . .
Как написать микросервис с нуля на C# с RabbitMQ, CQRS, Swagger и CI/CD
InfoMaster 14.01.2025
В современном мире разработки программного обеспечения микросервисная архитектура стала стандартом де-факто для создания масштабируемых и гибких приложений. Этот архитектурный подход предполагает. . .
Как создать интернет-магазин на PHP и JavaScript
InfoMaster 14.01.2025
В современном мире электронная коммерция стала неотъемлемой частью бизнеса. Создание собственного интернет-магазина открывает широкие возможности для предпринимателей, позволяя достичь большей. . .
Как написать Тетрис на Ассемблере
InfoMaster 14.01.2025
Тетрис – одна из самых узнаваемых и популярных компьютерных игр, созданная в 1984 году советским программистом Алексеем Пажитновым. За прошедшие десятилетия она завоевала симпатии миллионы людей по. . .
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2025, CyberForum.ru