Home
last modified time | relevance | path

Searched refs:AdjMat (Results 1 – 3 of 3) sorted by relevance

/dports/math/stanmath/math-4.2.0/stan/math/rev/core/
H A Dread_var.hpp140 EigDbl& ValMat, EigDbl& AdjMat) { in read_vi_val_adj() argument
141 AdjMat in read_vi_val_adj()
158 inline void read_val_adj(const EigRev& VarMat, EigDbl& ValMat, EigDbl& AdjMat) { in read_val_adj() argument
159 AdjMat = EigDbl::NullaryExpr( in read_val_adj()
194 EigDbl& AdjMat) { in read_vi_adj() argument
195 AdjMat = EigDbl::NullaryExpr( in read_vi_adj()
/dports/math/gap/gap-4.11.0/pkg/hap-1.25/lib/TorsionSubcomplexes/
H A Dcountingcells.gi360 Orbit, R, Mat, Chains, A, nrChains, originalChains, fn, newChains, AdjMat;
513 AdjMat:=NullMat(nr,nr);
518AdjMat{[Sum(d{[1..i]})+1..Sum(d{[1..i+1]})]}{[Sum(d{[1..j]})+1..Sum(d{[1..j+1]})]}:=NullMat(d[i+1]…
520AdjMat{[Sum(d{[1..i]})+1..Sum(d{[1..i+1]})]}{[Sum(d{[1..j]})+1..Sum(d{[1..j+1]})]}:=newChains[i][j…
525 A:=StructuralCopy(AdjMat);
530 A:=A*AdjMat;
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/GraphMol/Descriptors/
H A DGETAWAY.cpp1166 void GetGETAWAYone(double* dist3D, double* AdjMat, std::vector<double> Vpoints, in GetGETAWAYone() argument
1172 PRECONDITION(AdjMat != nullptr, "no adjacency matrix"); in GetGETAWAYone()
1175 Map<MatrixXd> ADJ(AdjMat, numAtoms, numAtoms); in GetGETAWAYone()
1195 void GetGETAWAY(double* dist3D, double* AdjMat, std::vector<double> Vpoints, in GetGETAWAY() argument
1200 PRECONDITION(AdjMat != nullptr, "no adjacency matrix"); in GetGETAWAY()
1204 Map<MatrixXd> ADJ(AdjMat, numAtoms, numAtoms); in GetGETAWAY()
1248 double* AdjMat = MolOps::getAdjacencyMatrix( in GETAWAY() local
1255 GetGETAWAYone(dist3D, AdjMat, Vpoints, mol, conf, Heavylist, res, precision, in GETAWAY()
1261 GetGETAWAY(dist3D, AdjMat, Vpoints, mol, conf, Heavylist, res, precision); in GETAWAY()