Home
last modified time | relevance | path

Searched refs:s_mu (Results 1 – 25 of 42) sorted by relevance

12

/dports/science/simbody/simbody-Simbody-3.7/SimTKmath/Integrators/src/CPodes/sundials/src/sundials/
H A Dsundials_band.c37 return(bandGBTRF(A->cols, A->M, A->mu, A->ml, A->s_mu, p)); in BandGBTRF()
42 bandGBTRS(A->cols, A->M, A->s_mu, A->ml, p, b); in BandGBTRS()
47 bandZero(A->cols, A->M, A->mu, A->ml, A->s_mu); in BandZero()
52 bandCopy(A->cols, B->cols, A->M, A->s_mu, B->s_mu, copymu, copyml); in BandCopy()
57 bandScale(c, A->cols, A->M, A->mu, A->ml, A->s_mu); in BandScale()
62 bandAddI(A->cols, A->M, A->s_mu); in BandAddI()
H A Dsundials_direct.c116 A->s_mu = smu; in NewBandMat()
258 printf("%12Lg ", a[j][i-j+A->s_mu]); in PrintMat()
260 printf("%12lg ", a[j][i-j+A->s_mu]); in PrintMat()
262 printf("%12g ", a[j][i-j+A->s_mu]); in PrintMat()
/dports/science/simbody/simbody-Simbody-3.7/SimTKmath/Integrators/src/CPodes/sundials/include/sundials/
H A Dsundials_direct.h121 int s_mu; member
175 #define BAND_COL(A,j) (((A->cols)[j])+(A->s_mu))
177 #define BAND_ELEM(A,i,j) ((A->cols)[j][(i)-(j)+(A->s_mu)])
/dports/math/scilab/scilab-6.1.1/scilab/modules/scicos/src/scicos_sundials/include/sundials/
H A Dsundials_direct.h122 long int s_mu; member
176 #define BAND_COL(A,j) (((A->cols)[j])+(A->s_mu))
178 #define BAND_ELEM(A,i,j) ((A->cols)[j][(i)-(j)+(A->s_mu)])
/dports/math/casadi/casadi-3.5.5/external_packages/casadi-sundials/sundials/
H A Dsundials_direct.h126 long int s_mu; member
180 #define BAND_COL(A,j) (((A->cols)[j])+(A->s_mu))
182 #define BAND_ELEM(A,i,j) ((A->cols)[j][(i)-(j)+(A->s_mu)])
H A Dsundials_band.c42 return(bandGBTRF(A->cols, A->M, A->mu, A->ml, A->s_mu, p)); in BandGBTRF()
47 bandGBTRS(A->cols, A->M, A->s_mu, A->ml, p, b); in BandGBTRS()
52 bandCopy(A->cols, B->cols, A->M, A->s_mu, B->s_mu, copymu, copyml); in BandCopy()
57 bandScale(c, A->cols, A->M, A->mu, A->ml, A->s_mu); in BandScale()
62 bandMatvec(A->cols, x, y, A->M, A->mu, A->ml, A->s_mu); in BandMatvec()
H A Dsundials_direct.c124 A->s_mu = smu; in NewBandMat()
266 for (i=0; i<A->M; i++) A->cols[i][A->s_mu] += ONE; in AddIdentity()
295 col_j = A->cols[j] + A->s_mu - A->mu; in SetToZero()
343 printf("%12Lg ", a[j][i-j+A->s_mu]); in PrintMat()
345 printf("%12g ", a[j][i-j+A->s_mu]); in PrintMat()
347 printf("%12g ", a[j][i-j+A->s_mu]); in PrintMat()
/dports/math/GiNaC/ginac-1.8.2/check/
H A Dexam_indexed.cpp94 symbol s_mu("mu"), s_nu("nu"), s_rho("rho"), s_sigma("sigma"); in metric_check() local
95 varidx mu(s_mu, 4), nu(s_nu, 4), rho(s_rho, 4), sigma(s_sigma, 4); in metric_check()
127 symbol s_mu("mu"), s_nu("nu"), s_rho("rho"), s_sigma("sigma"), s_tau("tau"); in epsilon_check() local
259 symbol s_mu("mu"), s_nu("nu"), s_rho("rho"), s_sigma("sigma"); in edyn_check() local
260 varidx mu(s_mu, 4), nu(s_nu, 4), rho(s_rho, 4), sigma(s_sigma, 4); in edyn_check()
295 * F_mu_nu.subs(lst{s_mu == s_nu, s_nu == s_sigma}) in edyn_check()
297 * F_mu_nu.subs(lst{s_mu == s_rho, s_nu == s_sigma}) in edyn_check()
301 ex E = T.subs(lst{s_mu == 0, s_nu == 0}).normal(); in edyn_check()
302 ex Px = T.subs(lst{s_mu == 0, s_nu == 1}); in edyn_check()
303 ex Py = T.subs(lst{s_mu == 0, s_nu == 2}); in edyn_check()
[all …]
/dports/math/stanmath/math-4.2.0/lib/sundials_5.7.0/src/sundials/
H A Dsundials_band.c42 return(bandGBTRF(A->cols, A->M, A->mu, A->ml, A->s_mu, p)); in BandGBTRF()
47 bandGBTRS(A->cols, A->M, A->s_mu, A->ml, p, b); in BandGBTRS()
52 bandCopy(A->cols, B->cols, A->M, A->s_mu, B->s_mu, copymu, copyml); in BandCopy()
57 bandScale(c, A->cols, A->M, A->mu, A->ml, A->s_mu); in BandScale()
62 bandMatvec(A->cols, x, y, A->M, A->mu, A->ml, A->s_mu); in BandMatvec()
H A Dsundials_direct.c119 A->s_mu = smu; in NewBandMat()
261 for (i=0; i<A->M; i++) A->cols[i][A->s_mu] += ONE; in AddIdentity()
290 col_j = A->cols[j] + A->s_mu - A->mu; in SetToZero()
338 STAN_SUNDIALS_FPRINTF(outfile, "%12Lg ", a[j][i-j+A->s_mu]); in PrintMat()
340 STAN_SUNDIALS_FPRINTF(outfile, "%12g ", a[j][i-j+A->s_mu]); in PrintMat()
342 STAN_SUNDIALS_FPRINTF(outfile, "%12g ", a[j][i-j+A->s_mu]); in PrintMat()
/dports/math/scilab/scilab-6.1.1/scilab/modules/scicos/src/scicos_sundials/src/sundials/
H A Dsundials_direct.c157 A->s_mu = smu; in NewBandMat()
338 A->cols[i][A->s_mu] += ONE; in AddIdentity()
373 col_j = A->cols[j] + A->s_mu - A->mu; in SetToZero()
431 printf("%12Lg ", a[j][i - j + A->s_mu]); in PrintMat()
433 printf("%12lg ", a[j][i - j + A->s_mu]); in PrintMat()
435 printf("%12g ", a[j][i - j + A->s_mu]); in PrintMat()
/dports/devel/upp/upp/bazaar/plugin/sundials/src/sundials/
H A Dsundials_band.c42 return(bandGBTRF(A->cols, A->M, A->mu, A->ml, A->s_mu, p)); in BandGBTRF()
47 bandGBTRS(A->cols, A->M, A->s_mu, A->ml, p, b); in BandGBTRS()
52 bandCopy(A->cols, B->cols, A->M, A->s_mu, B->s_mu, copymu, copyml); in BandCopy()
57 bandScale(c, A->cols, A->M, A->mu, A->ml, A->s_mu); in BandScale()
62 bandMatvec(A->cols, x, y, A->M, A->mu, A->ml, A->s_mu); in BandMatvec()
H A Dsundials_direct.c119 A->s_mu = smu; in NewBandMat()
261 for (i=0; i<A->M; i++) A->cols[i][A->s_mu] += ONE; in AddIdentity()
290 col_j = A->cols[j] + A->s_mu - A->mu; in SetToZero()
338 fprintf(outfile, "%12Lg ", a[j][i-j+A->s_mu]); in PrintMat()
340 fprintf(outfile, "%12g ", a[j][i-j+A->s_mu]); in PrintMat()
342 fprintf(outfile, "%12g ", a[j][i-j+A->s_mu]); in PrintMat()
/dports/science/cantera/cantera-2.5.1-611-gc4d6ecc15/ext/sundials/src/sundials/
H A Dsundials_band.c42 return(bandGBTRF(A->cols, A->M, A->mu, A->ml, A->s_mu, p)); in BandGBTRF()
47 bandGBTRS(A->cols, A->M, A->s_mu, A->ml, p, b); in BandGBTRS()
52 bandCopy(A->cols, B->cols, A->M, A->s_mu, B->s_mu, copymu, copyml); in BandCopy()
57 bandScale(c, A->cols, A->M, A->mu, A->ml, A->s_mu); in BandScale()
62 bandMatvec(A->cols, x, y, A->M, A->mu, A->ml, A->s_mu); in BandMatvec()
H A Dsundials_direct.c119 A->s_mu = smu; in NewBandMat()
261 for (i=0; i<A->M; i++) A->cols[i][A->s_mu] += ONE; in AddIdentity()
290 col_j = A->cols[j] + A->s_mu - A->mu; in SetToZero()
338 fprintf(outfile, "%12Lg ", a[j][i-j+A->s_mu]); in PrintMat()
340 fprintf(outfile, "%12g ", a[j][i-j+A->s_mu]); in PrintMat()
342 fprintf(outfile, "%12g ", a[j][i-j+A->s_mu]); in PrintMat()
/dports/math/sundials/sundials-5.7.0/src/sundials/
H A Dsundials_band.c42 return(bandGBTRF(A->cols, A->M, A->mu, A->ml, A->s_mu, p)); in BandGBTRF()
47 bandGBTRS(A->cols, A->M, A->s_mu, A->ml, p, b); in BandGBTRS()
52 bandCopy(A->cols, B->cols, A->M, A->s_mu, B->s_mu, copymu, copyml); in BandCopy()
57 bandScale(c, A->cols, A->M, A->mu, A->ml, A->s_mu); in BandScale()
62 bandMatvec(A->cols, x, y, A->M, A->mu, A->ml, A->s_mu); in BandMatvec()
H A Dsundials_direct.c119 A->s_mu = smu; in NewBandMat()
261 for (i=0; i<A->M; i++) A->cols[i][A->s_mu] += ONE; in AddIdentity()
290 col_j = A->cols[j] + A->s_mu - A->mu; in SetToZero()
338 fprintf(outfile, "%12Lg ", a[j][i-j+A->s_mu]); in PrintMat()
340 fprintf(outfile, "%12g ", a[j][i-j+A->s_mu]); in PrintMat()
342 fprintf(outfile, "%12g ", a[j][i-j+A->s_mu]); in PrintMat()
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/sundials_4.1.0/src/sundials/
H A Dsundials_band.c42 return(bandGBTRF(A->cols, A->M, A->mu, A->ml, A->s_mu, p)); in BandGBTRF()
47 bandGBTRS(A->cols, A->M, A->s_mu, A->ml, p, b); in BandGBTRS()
52 bandCopy(A->cols, B->cols, A->M, A->s_mu, B->s_mu, copymu, copyml); in BandCopy()
57 bandScale(c, A->cols, A->M, A->mu, A->ml, A->s_mu); in BandScale()
62 bandMatvec(A->cols, x, y, A->M, A->mu, A->ml, A->s_mu); in BandMatvec()
H A Dsundials_direct.c119 A->s_mu = smu; in NewBandMat()
261 for (i=0; i<A->M; i++) A->cols[i][A->s_mu] += ONE; in AddIdentity()
290 col_j = A->cols[j] + A->s_mu - A->mu; in SetToZero()
338 STAN_SUNDIALS_FPRINTF(outfile, "%12Lg ", a[j][i-j+A->s_mu]); in PrintMat()
340 STAN_SUNDIALS_FPRINTF(outfile, "%12g ", a[j][i-j+A->s_mu]); in PrintMat()
342 STAN_SUNDIALS_FPRINTF(outfile, "%12g ", a[j][i-j+A->s_mu]); in PrintMat()
/dports/math/stanmath/math-4.2.0/lib/sundials_5.7.0/include/sundials/
H A Dsundials_direct.h122 sunindextype s_mu; member
176 #define BAND_COL(A,j) (((A->cols)[j])+(A->s_mu))
178 #define BAND_ELEM(A,i,j) ((A->cols)[j][(i)-(j)+(A->s_mu)])
/dports/devel/upp/upp/bazaar/plugin/sundials/include/sundials/
H A Dsundials_direct.h122 sunindextype s_mu; member
176 #define BAND_COL(A,j) (((A->cols)[j])+(A->s_mu))
178 #define BAND_ELEM(A,i,j) ((A->cols)[j][(i)-(j)+(A->s_mu)])
/dports/science/cantera/cantera-2.5.1-611-gc4d6ecc15/ext/sundials/include/sundials/
H A Dsundials_direct.h122 sunindextype s_mu; member
176 #define BAND_COL(A,j) (((A->cols)[j])+(A->s_mu))
178 #define BAND_ELEM(A,i,j) ((A->cols)[j][(i)-(j)+(A->s_mu)])
/dports/math/sundials/sundials-5.7.0/include/sundials/
H A Dsundials_direct.h122 sunindextype s_mu; member
176 #define BAND_COL(A,j) (((A->cols)[j])+(A->s_mu))
178 #define BAND_ELEM(A,i,j) ((A->cols)[j][(i)-(j)+(A->s_mu)])
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/sundials_4.1.0/include/sundials/
H A Dsundials_direct.h122 sunindextype s_mu; member
176 #define BAND_COL(A,j) (((A->cols)[j])+(A->s_mu))
178 #define BAND_ELEM(A,i,j) ((A->cols)[j][(i)-(j)+(A->s_mu)])
/dports/graphics/luminance-qt5/luminance-hdr-2.6.1.1/src/HdrCreation/
H A Dweights.cpp67 static const float s_mu = 0.5f; variable
76 return exp(-32.0f * (input - s_mu) * (input - s_mu)); in getWeightGaussian()

12