Home
last modified time | relevance | path

Searched refs:getDim (Results 1 – 25 of 562) sorted by relevance

12345678910>>...23

/dports/science/netcdf-cxx/netcdf-cxx4-4.3.1/cxx4/
H A Dtest_dim.cpp284 …if( ncFile.getDim("dim1",NcGroup::All).getName() !="dim1") throw NcException("Error in test 9.1",_… in main()
285 …if( ncFile.getDim("dim2",NcGroup::All).getName() !="dim2") throw NcException("Error in test 9.2",_… in main()
286 …if( ncFile.getDim("dim3",NcGroup::All).getName() !="dim3") throw NcException("Error in test 9.3",_… in main()
287 …if( ncFile.getDim("dim4",NcGroup::All).getName() !="dim4") throw NcException("Error in test 9.4",_… in main()
288 …if( ncFile.getDim("dim5",NcGroup::All).getName() !="dim5") throw NcException("Error in test 9.5",_… in main()
289 …if( ncFile.getDim("dim6",NcGroup::All).getName() !="dim6") throw NcException("Error in test 9.6",_… in main()
290 …if( ncFile.getDim("dim7",NcGroup::All).getName() !="dim7") throw NcException("Error in test 9.7",_… in main()
291 …if( groupB.getDim("dim1",NcGroup::All).getName() !="dim1") throw NcException("Error in test 9.8",_… in main()
292 …if( groupB.getDim("dim2",NcGroup::All).getName() !="dim2") throw NcException("Error in test 9.9",_… in main()
293 …if( groupB.getDim("dim3",NcGroup::All).getName() !="dim3") throw NcException("Error in test 9.10",… in main()
[all …]
/dports/math/optpp/optpp-2.4/include/
H A DOptPDS.h88 OptPDS(NLP0* p): OptDirect(p->getDim()), nlp(p), in OptPDS()
89 simplex(p->getDim(),p->getDim()+1), vscales(p->getDim()), in OptPDS()
96 for (int i=1; i <= p->getDim(); i++) { in OptPDS()
97 for (int j=1; j <= p->getDim()+1; j++) { in OptPDS()
101 for (int i=1; i<= p->getDim(); i++) { in OptPDS()
107 OptPDS(NLP0* p, TOLS t): OptDirect(p->getDim(), t), nlp(p), in OptPDS()
108 simplex(p->getDim(),p->getDim()+1), vscales(p->getDim()), in OptPDS()
115 for (int i=1; i <= p->getDim(); i++) { in OptPDS()
116 for (int j=1; j <= p->getDim()+1; j++) { in OptPDS()
120 for (int i=1; i<=p->getDim(); i++) { in OptPDS()
[all …]
H A DOptLBFGS.h136 OptLBFGS(NLP1* p): OptLBFGSLike(p->getDim()), nlp(p), printXs(false) in OptLBFGS()
137 {strcpy(method,"Limited Memory BFGS method"); initMem(p->getDim());} in OptLBFGS()
146 OptLBFGS(NLP1* p, int m): OptLBFGSLike(p->getDim()), nlp(p), printXs(false) { in OptLBFGS()
148 memM = (m <= p->getDim())? m : p->getDim(); in OptLBFGS()
156 OptLBFGS(NLP1* p, TOLS t): OptLBFGSLike(p->getDim(),t), nlp(p), printXs(false) in OptLBFGS()
157 {strcpy(method,"Limited Memory BFGS method"); initMem(p->getDim());} in OptLBFGS()
165 OptLBFGS(NLP1* p, TOLS t, int m): OptLBFGSLike(p->getDim(),t), nlp(p), printXs(false) { in OptLBFGS()
167 memM = (m <= p->getDim())? m : p->getDim(); in OptLBFGS()
H A DOptBCNewtonLike.h114 {int ndim = nlprob()->getDim(); OptimizeClass::defaultReset(ndim);} in reset()
237 OptBCNewtonLike(p->getDim()), mem_nlp(p){;} in OptBCNewton1Deriv()
240 OptBCNewtonLike(p->getDim(),u), mem_nlp(p) in OptBCNewton1Deriv()
244 OptBCNewtonLike(p->getDim(),t), mem_nlp(p) {;} in OptBCNewton1Deriv()
267 OptBCNewtonLike(p->getDim()), mem_nlp(p){;} in OptBCNewton2Deriv()
270 OptBCNewtonLike(p->getDim(),u), mem_nlp(p){ update_fcn = u; } in OptBCNewton2Deriv()
273 OptBCNewtonLike(p->getDim(),t), mem_nlp(p) {} in OptBCNewton2Deriv()
H A DOptNewtonLike.h220 OptNewtonLike(p->getDim()), mem_nlp(p){} in OptNewton1Deriv()
223 OptNewtonLike(p->getDim(),u), mem_nlp(p){} in OptNewton1Deriv()
226 OptNewtonLike(p->getDim(),t), mem_nlp(p){} in OptNewton1Deriv()
247 OptNewtonLike(p->getDim()), mem_nlp(p){} in OptNewton2Deriv()
250 OptNewtonLike(p->getDim(),u), mem_nlp(p){} in OptNewton2Deriv()
253 OptNewtonLike(p->getDim(),t), mem_nlp(p){} in OptNewton2Deriv()
H A DOptFDNIPS.h37 OptFDNIPS(NLP1* p): OptNIPSLike(p->getDim()), nlp(p) in OptFDNIPS()
43 OptFDNIPS(NLP1* p, UPDATEFCN u): OptNIPSLike(p->getDim(),u), nlp(p) in OptFDNIPS()
49 OptFDNIPS(NLP1* p, TOLS t): OptNIPSLike(p->getDim(),t), nlp(p) in OptFDNIPS()
H A DOptQNIPS.h38 OptQNIPS(NLP1* p): OptNIPSLike(p->getDim()), nlp(p) in OptQNIPS()
45 OptQNIPS(NLP1* p, UPDATEFCN u): OptNIPSLike(p->getDim(),u), nlp(p) in OptQNIPS()
52 OptQNIPS(NLP1* p, TOLS t): OptNIPSLike(p->getDim(),t), nlp(p) in OptQNIPS()
H A DOptBCFDNewton.h48 OptBCNewton1Deriv(p), nactive(0), work_set(p->getDim()) in OptBCFDNewton()
58 OptBCNewton1Deriv(p, u), nactive(0), work_set(p->getDim()) in OptBCFDNewton()
67 OptBCNewton1Deriv(p, t), nactive(0), work_set(p->getDim()) in OptBCFDNewton()
H A DOptNIPS.h44 OptNIPS(NLP2* p): OptNIPSLike(p->getDim()), nlp(p) in OptNIPS()
50 OptNIPS(NLP2* p, UPDATEFCN u): OptNIPSLike(p->getDim(),u), nlp(p) in OptNIPS()
56 OptNIPS(NLP2* p, TOLS t): OptNIPSLike(p->getDim(),t), nlp(p) in OptNIPS()
H A DOptBCQNewton.h47 OptBCNewton1Deriv(p), nactive(0), work_set(p->getDim()) in OptBCQNewton()
56 OptBCNewton1Deriv(p, u), nactive(0), work_set(p->getDim()) in OptBCQNewton()
65 OptBCNewton1Deriv(p, t), nactive(0), work_set(p->getDim()) in OptBCQNewton()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/OPTPP/include/
H A DOptPDS.h88 OptPDS(NLP0* p): OptDirect(p->getDim()), nlp(p), in OptPDS()
89 simplex(p->getDim(),p->getDim()+1), vscales(p->getDim()), in OptPDS()
96 for (int i=0; i<p->getDim(); i++) { in OptPDS()
97 for (int j=0; j<p->getDim()+1; j++) { in OptPDS()
101 for (int i=0; i<p->getDim(); i++) { in OptPDS()
107 OptPDS(NLP0* p, TOLS t): OptDirect(p->getDim(), t), nlp(p), in OptPDS()
108 simplex(p->getDim(),p->getDim()+1), vscales(p->getDim()), in OptPDS()
115 for (int i=0; i<p->getDim(); i++) { in OptPDS()
116 for (int j=0; j<p->getDim()+1; j++) { in OptPDS()
120 for (int i=0; i<p->getDim(); i++) { in OptPDS()
[all …]
H A DOptLBFGS.h136 OptLBFGS(NLP1* p): OptLBFGSLike(p->getDim()), nlp(p), printXs(false) in OptLBFGS()
137 {strcpy(method,"Limited Memory BFGS method"); initMem(p->getDim());} in OptLBFGS()
146 OptLBFGS(NLP1* p, int m): OptLBFGSLike(p->getDim()), nlp(p), printXs(false) { in OptLBFGS()
148 memM = (m <= p->getDim())? m : p->getDim(); in OptLBFGS()
156 OptLBFGS(NLP1* p, TOLS t): OptLBFGSLike(p->getDim(),t), nlp(p), printXs(false) in OptLBFGS()
157 {strcpy(method,"Limited Memory BFGS method"); initMem(p->getDim());} in OptLBFGS()
165 OptLBFGS(NLP1* p, TOLS t, int m): OptLBFGSLike(p->getDim(),t), nlp(p), printXs(false) { in OptLBFGS()
167 memM = (m <= p->getDim())? m : p->getDim(); in OptLBFGS()
H A DOptNewtonLike.h225 OptNewtonLike(p->getDim()), mem_nlp(p){} in OptNewton1Deriv()
228 OptNewtonLike(p->getDim(),u), mem_nlp(p){} in OptNewton1Deriv()
231 OptNewtonLike(p->getDim(),t), mem_nlp(p){} in OptNewton1Deriv()
252 OptNewtonLike(p->getDim()), mem_nlp(p){} in OptNewton2Deriv()
255 OptNewtonLike(p->getDim(),u), mem_nlp(p){} in OptNewton2Deriv()
258 OptNewtonLike(p->getDim(),t), mem_nlp(p){} in OptNewton2Deriv()
H A DOptBCNewtonLike.h241 OptBCNewtonLike(p->getDim()), mem_nlp(p){;} in OptBCNewton1Deriv()
244 OptBCNewtonLike(p->getDim(),u), mem_nlp(p) in OptBCNewton1Deriv()
248 OptBCNewtonLike(p->getDim(),t), mem_nlp(p) {;} in OptBCNewton1Deriv()
271 OptBCNewtonLike(p->getDim()), mem_nlp(p){;} in OptBCNewton2Deriv()
274 OptBCNewtonLike(p->getDim(),u), mem_nlp(p){ update_fcn = u; } in OptBCNewton2Deriv()
277 OptBCNewtonLike(p->getDim(),t), mem_nlp(p) {} in OptBCNewton2Deriv()
H A DOptQNIPS.h38 OptQNIPS(NLP1* p): OptNIPSLike(p->getDim()), nlp(p) in OptQNIPS()
45 OptQNIPS(NLP1* p, UPDATEFCN u): OptNIPSLike(p->getDim(),u), nlp(p) in OptQNIPS()
52 OptQNIPS(NLP1* p, TOLS t): OptNIPSLike(p->getDim(),t), nlp(p) in OptQNIPS()
H A DOptFDNIPS.h37 OptFDNIPS(NLP1* p): OptNIPSLike(p->getDim()), nlp(p) in OptFDNIPS()
43 OptFDNIPS(NLP1* p, UPDATEFCN u): OptNIPSLike(p->getDim(),u), nlp(p) in OptFDNIPS()
49 OptFDNIPS(NLP1* p, TOLS t): OptNIPSLike(p->getDim(),t), nlp(p) in OptFDNIPS()
H A DOptNIPS.h44 OptNIPS(NLP2* p): OptNIPSLike(p->getDim()), nlp(p) in OptNIPS()
50 OptNIPS(NLP2* p, UPDATEFCN u): OptNIPSLike(p->getDim(),u), nlp(p) in OptNIPS()
56 OptNIPS(NLP2* p, TOLS t): OptNIPSLike(p->getDim(),t), nlp(p) in OptNIPS()
/dports/math/singular/Singular-Release-4-2-1/Singular/dyn_modules/Order/
H A Dnforder_ideal.cc106 bigintmat * r = new bigintmat(O->getDim(), 2*O->getDim(), C), in nf_idAdd()
150 t2 = new bigintmat(O->getDim(), O->getDim(), C); in nf_idAdd()
151 t2->copySubmatInto(r, 1, O->getDim()+1, O->getDim(), O->getDim(), 1,1); in nf_idAdd()
178 bigintmat * c = new bigintmat(O->getDim(), 1, C), in nf_idMult()
179 *rep = new bigintmat(O->getDim(), O->getDim(), C); in nf_idMult()
180 for(int i=0; i<O->getDim(); i++) { in nf_idMult()
185 bigintmat * s = new bigintmat(O->getDim(), r->cols()+O->getDim(), C); in nf_idMult()
212 t1 = new bigintmat(O->getDim(), O->getDim(), C); in nf_idMult()
213 r->getColRange(r->cols()-O->getDim()+1, O->getDim(), t1); in nf_idMult()
263 bigintmat * r = new bigintmat(ord->getDim(), ord->getDim(), C); in nf_idInit()
[all …]
/dports/science/smoldyn/smoldyn-2.67/source/python/
H A DSimulation.cpp26 assert(boundary_type.size() == getDim()); in Simulation()
28 for (size_t d = 0; d < getDim(); d++) { in Simulation()
54 Simulation::getDim() const in getDim() function in Simulation
84 if (getDim() == 0 || getDim() > 3) { in initialize()
85 cerr << __FUNCTION__ << ": dim must be between 0 and 3. Got " << getDim() << endl; in initialize()
89 if (low_.size() != getDim()) { in initialize()
94 if (high_.size() != getDim()) { in initialize()
99 for (size_t d = 0; d < getDim(); d++) { in initialize()
108 sim_ = smolNewSim(getDim(), &low_[0], &high_[0]); in initialize()
/dports/cad/gmsh/gmsh-4.9.2-source/Geo/
H A DChain.h136 int getDim() const { return _dim; } in getDim() function
197 int getDim() const { return _dim; } in getDim() function
278 if(this->getDim() == e->getDim()) { in getCoefficient()
284 if(this->getDim() == 0) { in getCoefficient()
288 else if(this->getDim() == 1) { in getCoefficient()
293 else if(this->getDim() == 2) { in getCoefficient()
303 ElemChain ec(this->getDim(), v); in getCoefficient()
310 if(c1.getDim() != c2.getDim()) return incidence; in incidence()
423 if(_dim == -1) _dim = c.getDim(); in addElemChain()
453 this->getDim()); in addToModel()
[all …]
H A DCellComplex.cpp80 int dim = element->getDim(); in _insertCells()
175 int dim = cell->getDim(); in _removeCells()
218 int dim = cell->getDim(); in _immunizeCells()
273 int dim = cell->getDim(); in removeCell()
478 for(int j = 1; j <= getDim(); j++) in _omitCell()
510 while(getSize(getDim()) != 0) { in reduceComplex()
511 auto cit = firstCell(getDim()); in reduceComplex()
832 if(cit == lastCell(bdCell->getDim())) { in coherent()
869 cit = _cells[cell->getDim()].find(cell); in hasCell()
871 cit = _ocells[cell->getDim()].find(cell); in hasCell()
[all …]
/dports/security/helib/HElib-1.3.1/src/
H A Dhypercube.cpp51 k %= getDim(d); in rotate1D()
55 k += getDim(d); in rotate1D()
76 k %= getDim(d); in shift1D()
80 k += getDim(d); in shift1D()
177 long n = s.getDim(0); in getHyperColumn()
196 long n = s.getDim(0); in setHyperColumn()
219 long n = s.getDim(0); in setHyperColumn()
245 for (long i = 0; i < s0.getDim(0); i++) { in print3D()
248 for (long j = 0; j < s1.getDim(0); j++) { in print3D()
251 for (long k = 0; k < s2.getDim(0); k++) in print3D()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/source/command_queue/
H A Dcl_local_work_size.cpp40 … ((dispatchInfo.getDim() == 1) && (dispatchInfo.getGWS().x % wsInfo.simdSize * 2 == 0))) { in computeWorkgroupSize()
45 computeWorkgroupSizeND(wsInfo, workGroupSize, workItems, dispatchInfo.getDim()); in computeWorkgroupSize()
50 if (dispatchInfo.getDim() == 1) { in computeWorkgroupSize()
52 … } else if (DebugManager.flags.EnableComputeWorkSizeSquared.get() && dispatchInfo.getDim() == 2) { in computeWorkgroupSize()
53 …mputeWorkgroupSizeSquared(maxWorkGroupSize, workGroupSize, workItems, simd, dispatchInfo.getDim()); in computeWorkgroupSize()
73 … if (context != nullptr && context->isProvidingPerformanceHints() && dispatchInfo.getDim() <= 3) { in provideLocalWorkGroupSizeHints()
87 for (auto i = 0u; i < dispatchInfo.getDim(); i++) { in provideLocalWorkGroupSizeHints()
/dports/graphics/openvkl/openvkl-1.1.0/openvkl/devices/cpu/volume/amr/
H A DKDTree.ih14 inline uint32 getDim(const KDTreeNode & node)
26 return getDim(node) == 3;
39 inline uniform uint32 getDim(const uniform KDTreeNode & node)
51 return getDim(node) == 3;
/dports/math/optpp/optpp-2.4/src/Newton/
H A DOptBaNewton.C57 int n = nlp->getDim(); in initHessian()
86 int n = nlp->getDim(); in initOpt()
113 int n = nlp->getDim(); in optimize()
210 int i, n = nlp->getDim(); in checkConvg()
260 int i, n = nlp->getDim(); in updateBarrierMultiplier()
289 int i, n = nlp->getDim(); in compute_Barrier_Fvalue()
316 int i, n= nlp->getDim(); in compute_Barrier_Gradient()
338 int i, n= nlp->getDim(); in compute_Barrier_Hessian()
365 int n = nlp->getDim(); in computeSearch2()
387 int n = nlp->getDim(); in computeStep()
[all …]

12345678910>>...23