Home
last modified time | relevance | path

Searched refs:pivot_ (Results 1 – 25 of 40) sorted by relevance

12

/dports/math/lapack++/lapackpp-2.5.4/include/
H A Dtrfd.h50 LaVectorLongInt pivot_; variable
68 return pivot_; in pivot()
91 inline LaTridiagFactDouble::LaTridiagFactDouble(): T_(), pivot_(), size_(0) in LaTridiagFactDouble()
95 inline LaTridiagFactDouble::LaTridiagFactDouble(int N): T_(N), pivot_(N), size_(N) in LaTridiagFactDouble()
102 pivot_.copy(F.pivot_); in LaTridiagFactDouble()
127 pivot_.ref(F.pivot_); in ref()
137 pivot_.resize(size_, 1); in ref()
145 pivot_.copy(F.pivot_); in copy()
155 pivot_.resize(size_, 1); in copy()
H A Dsyfd.h36 LaVectorLongInt pivot_; variable
59 return pivot_; in pivot()
91 inline LaSymmFactDouble::LaSymmFactDouble(): S_(), pivot_(), info_(0), uplo_('L') in LaSymmFactDouble()
95 inline LaSymmFactDouble::LaSymmFactDouble(int n, int m): S_(n, m), pivot_(n*m), in LaSymmFactDouble()
103 pivot_.copy(F.pivot_); in LaSymmFactDouble()
119 pivot_.ref(F.pivot_); in ref()
131 pivot_.copy(F.pivot_); in copy()
H A Dbfd.h35 LaVectorLongInt pivot_; variable
65 inline LaBandFactDouble::LaBandFactDouble(): B_(), pivot_() in LaBandFactDouble()
76 : B_(N, kl, ku), pivot_(kl + ku + 1) in LaBandFactDouble()
86 inline LaBandFactDouble::LaBandFactDouble(LaBandMatDouble &G): pivot_() in LaBandFactDouble()
105 pivot_.ref(F.pivot_); in LaBandFactDouble()
124 return pivot_; in pivot()
141 pivot_.ref(F.pivot_); in ref()
H A Dgfd.h36 LaVectorLongInt pivot_; variable
68 inline LaGenFactDouble::LaGenFactDouble(): L_(), U_(), pivot_() in LaGenFactDouble()
76 inline LaGenFactDouble::LaGenFactDouble(int n, int m): L_(n, m), U_(n, m), pivot_(n*m) in LaGenFactDouble()
89 pivot_.ref(F.pivot_); in LaGenFactDouble()
114 return pivot_; in pivot()
138 pivot_.ref(F.pivot_); in ref()
/dports/graphics/nurbs++/nurbs++-3.0.11/numerical/
H A DmatrixMat.h65 LUMatrix(int r, int c) : Matrix<T>(r,c),pivot(pivot_) { pivot_.resize(r) ; } in LUMatrix()
66 LUMatrix() : Matrix<T>(),pivot(pivot_) {; } in LUMatrix()
67 LUMatrix(const LUMatrix<T>& lu): Matrix<T>(lu),pivot(pivot_) { pivot_ = lu.pivot_;} in LUMatrix()
68 LUMatrix(const Matrix<T>& a): Matrix<T>(a.rows(),a.cols()),pivot(pivot_) { decompose(a) ; } in LUMatrix()
70 void resize(const int r, const int c) { Matrix<T>::resize(r,c) ; pivot_.resize(r) ; } in resize()
80 Vector<int> pivot_ ;
H A DmatrixMat.cpp54 pivot_ = a.pivot_ ; in operator =()
98 pivot_[k] = k ; in decompose()
130 pivot_[k] = l; in decompose()
158 pivot_[nm1] = nm1; in decompose()
/dports/biology/bbmap/bbmap/current/ukmer/
H A DKmerNodeU2D.java23 public KmerNodeU2D(long[] pivot_){ in KmerNodeU2D() argument
24 super(pivot_); in KmerNodeU2D()
27 public KmerNodeU2D(long[] pivot_, int value_){ in KmerNodeU2D() argument
28 super(pivot_); in KmerNodeU2D()
33 public KmerNodeU2D(long[] pivot_, int[] vals_){ in KmerNodeU2D() argument
34 super(pivot_); in KmerNodeU2D()
39 public final KmerNodeU makeNode(long[] pivot_, int value_){ in makeNode() argument
40 return new KmerNodeU2D(pivot_, value_); in makeNode()
44 public final KmerNodeU makeNode(long[] pivot_, int[] values_){ in makeNode() argument
45 return new KmerNodeU2D(pivot_, values_); in makeNode()
H A DKmerNodeU1D.java19 public KmerNodeU1D(long[] pivot_){ in KmerNodeU1D() argument
20 super(pivot_); in KmerNodeU1D()
23 public KmerNodeU1D(long[] pivot_, int value_){ in KmerNodeU1D() argument
24 super(pivot_); in KmerNodeU1D()
29 public final KmerNodeU makeNode(long[] pivot_, int value_){ in makeNode() argument
30 return new KmerNodeU1D(pivot_, value_); in makeNode()
34 public final KmerNodeU makeNode(long[] pivot_, int[] values_){ in makeNode() argument
H A DKmerNodeU.java22 protected KmerNodeU(long[] pivot_){ in KmerNodeU() argument
23 pivot=pivot_.clone(); in KmerNodeU()
26 public abstract KmerNodeU makeNode(long[] pivot_, int value_); in makeNode() argument
27 public abstract KmerNodeU makeNode(long[] pivot_, int[] values_); in makeNode() argument
/dports/biology/bbmap/bbmap/current/kmer/
H A DKmerNode2D.java24 public KmerNode2D(long pivot_){ in KmerNode2D() argument
25 super(pivot_); in KmerNode2D()
28 public KmerNode2D(long pivot_, int value_){ in KmerNode2D() argument
29 super(pivot_); in KmerNode2D()
35 public KmerNode2D(long pivot_, int[] vals_, int vlen){ in KmerNode2D() argument
36 super(pivot_); in KmerNode2D()
45 public final KmerNode makeNode(long pivot_, int value_){ in makeNode() argument
46 return new KmerNode2D(pivot_, value_); in makeNode()
50 public final KmerNode makeNode(long pivot_, int[] values_, int vlen){ in makeNode() argument
51 return new KmerNode2D(pivot_, values_, vlen); in makeNode()
H A DKmerNode1D.java19 public KmerNode1D(long pivot_){ in KmerNode1D() argument
20 super(pivot_); in KmerNode1D()
23 public KmerNode1D(long pivot_, int value_){ in KmerNode1D() argument
24 super(pivot_); in KmerNode1D()
29 public final KmerNode makeNode(long pivot_, int value_){ in makeNode() argument
30 return new KmerNode1D(pivot_, value_); in makeNode()
34 public final KmerNode makeNode(long pivot_, int[] values_, int vlen){ in makeNode() argument
H A DKmerLink.java23 public KmerLink(long pivot_){ in KmerLink() argument
24 pivot=pivot_; in KmerLink()
27 public KmerLink(long pivot_, int value_){ in KmerLink() argument
28 pivot=pivot_; in KmerLink()
H A DKmerNode.java22 protected KmerNode(long pivot_){ in KmerNode() argument
23 pivot=pivot_; in KmerNode()
26 public abstract KmerNode makeNode(long pivot_, int value_); in makeNode() argument
27 public abstract KmerNode makeNode(long pivot_, int[] values_, int vlen_); in makeNode() argument
/dports/misc/ompl/ompl-1.5.2/src/ompl/datastructures/
H A DNearestNeighborsGNAT.h342 dist = NearestNeighbors<_T>::distFun_(data, tree_->pivot_); in nearestKInternal()
343 isPivot = tree_->insertNeighborK(nbhQueue, k, tree_->pivot_, data, dist); in nearestKInternal()
364 tree_->insertNeighborR(nbhQueue, radius, tree_->pivot_, in nearestRInternal()
365 NearestNeighbors<_T>::distFun_(data, tree_->pivot_)); in nearestRInternal()
394 , pivot_(std::move(pivot)) in Node()
679 return pivot_; in sample()
688 return (i == data_.size()) ? pivot_ : data_[i]; in sample()
695 if (!gnat.isRemoved(pivot_)) in list()
696 data.push_back(pivot_); in list()
715 out << "\npivot:\t" << node.pivot_;
[all …]
H A DNearestNeighborsGNATNoThreadSafety.h331 tree_->distToPivot_ = NearestNeighbors<_T>::distFun_(data, tree_->pivot_); in nearestKInternal()
352 tree_->insertNeighborR(nearQueue_, radius, tree_->pivot_, in nearestRInternal()
381 , pivot_(std::move(pivot)) in Node()
570 child->distToPivot_ = gnat.distFun_(data, child->pivot_); in nearestK()
620 child->distToPivot_ = gnat.distFun_(data, child->pivot_); in nearestR()
655 return pivot_; in sample()
664 return (i == data_.size()) ? pivot_ : data_[i]; in sample()
671 if (!gnat.isRemoved(pivot_)) in list()
672 data.push_back(pivot_); in list()
691 out << "\npivot:\t" << node.pivot_;
[all …]
/dports/math/ipopt/Ipopt-3.12.13/Ipopt/src/LinAlg/
H A DIpDenseGenMatrix.cpp37 pivot_(NULL) in DenseGenMatrix()
44 delete [] pivot_; in ~DenseGenMatrix()
252 delete [] pivot_; in ComputeLUFactorInPlace()
253 pivot_ = NULL; // set to NULL so that destructor will not try to in ComputeLUFactorInPlace()
255 pivot_ = new Index[dim]; in ComputeLUFactorInPlace()
259 IpLapackDgetrf(dim, values_, pivot_, dim, info); in ComputeLUFactorInPlace()
263 delete [] pivot_; in ComputeLUFactorInPlace()
264 pivot_ = NULL; in ComputeLUFactorInPlace()
285 IpLapackDgetrs(NRows(), B.NCols(), values_, NRows(), pivot_, Bvalues, in LUSolveMatrix()
298 IpLapackDgetrs(NRows(), 1, values_, NRows(), pivot_, bvalues, b.Dim()); in LUSolveVector()
/dports/benchmarks/scimark2/scimark2-java-2.0_2/
H A DLU.java113 return new_copy(pivot_); in getPivot()
133 pivot_ = new int[M]; in LU()
135 factor(LU_, pivot_); in LU()
148 solve(LU_, pivot_, x); in solve()
289 private int pivot_[]; field in LU
/dports/benchmarks/scimark2/scimark2-java-2.0_2/jnt/scimark2/
H A DLU.java113 return new_copy(pivot_); in getPivot()
133 pivot_ = new int[M]; in LU()
135 factor(LU_, pivot_); in LU()
148 solve(LU_, pivot_, x); in solve()
289 private int pivot_[]; field in LU
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/gpu/features/src/
H A Dcentroid.cu69 float3 pivot_; member
70 TupleDistCvt(const float3& pivot) : pivot_(pivot) {} in TupleDistCvt()
75 float dx = pivot_.x - point.x; in operator ()()
76 float dy = pivot_.y - point.y; in operator ()()
77 float dz = pivot_.z - point.z; in operator ()()
/dports/math/ogdf/OGDF/src/coin/Clp/
H A DClpNetworkBasis.cpp30 pivot_ = NULL; in ClpNetworkBasis()
57 pivot_ = new int [ numberRows_+1]; in ClpNetworkBasis()
71 pivot_[i] = -1; in ClpNetworkBasis()
157 if (rhs.pivot_) { in ClpNetworkBasis()
159 CoinMemcpyN(rhs.pivot_, (numberRows_ + 1), pivot_); in ClpNetworkBasis()
161 pivot_ = NULL; in ClpNetworkBasis()
227 delete [] pivot_; in ~ClpNetworkBasis()
248 delete [] pivot_; in operator =()
275 if (rhs.pivot_) { in operator =()
277 CoinMemcpyN(rhs.pivot_, (numberRows_ + 1), pivot_); in operator =()
[all …]
/dports/math/clp/Clp-1.17.3/Clp/src/
H A DClpNetworkBasis.cpp29 pivot_ = NULL; in ClpNetworkBasis()
56 pivot_ = new int[numberRows_ + 1]; in ClpNetworkBasis()
70 pivot_[i] = -1; in ClpNetworkBasis()
156 if (rhs.pivot_) { in ClpNetworkBasis()
158 CoinMemcpyN(rhs.pivot_, (numberRows_ + 1), pivot_); in ClpNetworkBasis()
160 pivot_ = NULL; in ClpNetworkBasis()
226 delete[] pivot_; in ~ClpNetworkBasis()
247 delete[] pivot_; in operator =()
274 if (rhs.pivot_) { in operator =()
276 CoinMemcpyN(rhs.pivot_, (numberRows_ + 1), pivot_); in operator =()
[all …]
H A DClpNetworkBasis.hpp122 int *pivot_; member in ClpNetworkBasis
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/UI/
H A DUIElement.cpp141 pivot_(std::numeric_limits<float>::max(), std::numeric_limits<float>::max()), in UIElement()
453 pos.x_ -= (int)(size_.x_ * pivot_.x_); in GetScreenPosition()
454 pos.y_ -= (int)(size_.y_ * pivot_.y_); in GetScreenPosition()
731 float pivot = pivot_.x_; in SetHorizontalAlignment()
743 if (min.x_ != anchorMin_.x_ || max.x_ != anchorMax_.x_ || pivot != pivot_.x_) in SetHorizontalAlignment()
747 pivot_.x_ = pivot; in SetHorizontalAlignment()
764 float pivot = pivot_.y_; in SetVerticalAlignment()
776 if (min.y_ != anchorMin_.y_ || max.y_ != anchorMax_.y_ || pivot != pivot_.y_) in SetVerticalAlignment()
780 pivot_.y_ = pivot; in SetVerticalAlignment()
846 if (pivot != pivot_) in SetPivot()
[all …]
/dports/math/ogdf/OGDF/include/coin/
H A DClpNetworkBasis.hpp125 int * pivot_; member in ClpNetworkBasis
/dports/finance/ledger/ledger-3.2.1/src/
H A Dchain.cc240 else if (report.HANDLED(pivot_)) { in chain_post_handlers()
241 string pivot = report.HANDLER(pivot_).str(); in chain_post_handlers()

12