Home
last modified time | relevance | path

Searched refs:newton (Results 1 – 25 of 2308) sorted by relevance

12345678910>>...93

/dports/science/liblinear/liblinear-2.43/
H A DMakefile11 lib: linear.o newton.o blas/blas.a
17 $(CXX) $${SHARED_LIB_FLAG} linear.o newton.o blas/blas.a -o liblinear.so.$(SHVER)
19 train: newton.o linear.o train.c blas/blas.a
20 $(CXX) $(CFLAGS) -o train train.c newton.o linear.o $(LIBS)
22 predict: newton.o linear.o predict.c blas/blas.a
23 $(CXX) $(CFLAGS) -o predict predict.c newton.o linear.o $(LIBS)
25 newton.o: newton.cpp newton.h
26 $(CXX) $(CFLAGS) -c -o newton.o newton.cpp
37 rm -f *~ newton.o linear.o train predict liblinear.so.$(SHVER)
H A DMakefile.win7 $(TARGET)\train.exe: newton.obj linear.obj train.c blas\*.c
8 $(CXX) $(CFLAGS) -Fe$(TARGET)\train.exe newton.obj linear.obj train.c blas\*.c
10 $(TARGET)\predict.exe: newton.obj linear.obj predict.c blas\*.c
11 $(CXX) $(CFLAGS) -Fe$(TARGET)\predict.exe newton.obj linear.obj predict.c blas\*.c
16 newton.obj: newton.cpp newton.h
17 $(CXX) $(CFLAGS) -c newton.cpp
19 lib: linear.cpp linear.h linear.def newton.obj
20 $(CXX) $(CFLAGS) -LD linear.cpp newton.obj blas\*.c -Fe$(TARGET)\liblinear -link -DEF:linear.def
/dports/math/py-sympy/sympy-1.9/sympy/physics/units/tests/
H A Dtest_unit_system_cgs_gauss.py6 newton, joule, dyne, speed_of_light, meter
28 assert convert_to(dyne, newton, SI) == newton/10**5
29 assert convert_to(dyne, newton, cgs_gauss) == newton/10**5
30 assert convert_to(newton, dyne, SI) == 10**5*dyne
31 assert convert_to(newton, dyne, cgs_gauss) == 10**5*dyne
39 …assert convert_to(coulomb_constant, newton*meter**2/coulomb**2, cgs_gauss) == 22468879468420441*me…
40 …assert convert_to(coulomb_constant, newton*meter**2/coulomb**2, SI) == 22468879468420441*meter**2*
43 …assert NS(convert_to(coulomb_constant, newton*meter**2/coulomb**2, SI)) == '8987551787.36818*meter…
/dports/science/py-pyscf/pyscf-2.0.1/examples/scf/
H A D23-decorate_scf.py68 e1 = scf.RHF(mol).newton().x2c().kernel()
69 e2 = scf.RHF(mol).x2c().newton().kernel()
75 mf = scf.newton(scf.RHF(mol))
76 mf = scf.RHF(mol).newton() # Stream style
85 mf = scf.density_fit(scf.newton(scf.RHF(mol)))
86 mf = scf.RHF(mol).newton().density_fit()
95 mf = scf.newton(scf.density_fit(scf.RHF(mol)))
96 mf = scf.RHF(mol).density_fit().newton()
108 mf = scf.density_fit(scf.newton(scf.density_fit(scf.RHF(mol))), 'ahlrichs')
109 mf = scf.RHF(mol).density_fit().newton().density_fit(auxbasis='ahlrichs')
/dports/science/py-pyscf/pyscf-2.0.1/examples/dft/
H A D23-decorate_scf.py68 e1 = scf.RHF(mol).newton().x2c().kernel()
69 e2 = scf.RHF(mol).x2c().newton().kernel()
75 mf = scf.newton(scf.RHF(mol))
76 mf = scf.RHF(mol).newton() # Stream style
85 mf = scf.density_fit(scf.newton(scf.RHF(mol)))
86 mf = scf.RHF(mol).newton().density_fit()
95 mf = scf.newton(scf.density_fit(scf.RHF(mol)))
96 mf = scf.RHF(mol).density_fit().newton()
108 mf = scf.density_fit(scf.newton(scf.density_fit(scf.RHF(mol))), 'ahlrichs')
109 mf = scf.RHF(mol).density_fit().newton().density_fit(auxbasis='ahlrichs')
/dports/science/lammps/lammps-stable_29Sep2021/examples/PACKAGES/slater/
H A Dlog.lammps69 attributes: half, newton on
70 pair build: half/bin/atomonly/newton
71 stencil: half/bin/3d/newton
74 attributes: half, newton on
10147 attributes: half, newton on
10149 stencil: half/bin/3d/newton
10152 attributes: half, newton on
10159 stencil: half/bin/3d/newton
10164 stencil: half/bin/3d/newton
10169 stencil: half/bin/3d/newton
[all …]
/dports/science/py-pyscf/pyscf-2.0.1/pyscf/pbc/scf/test/
H A Dtest_newton.py54 mf = scf.newton(mf)
63 mf = scf.newton(mf)
70 mf = scf.newton(mf)
84 mf = scf.newton(mf)
92 mf = scf.newton(mf)
100 mf = scf.newton(mf)
108 mf = scf.newton(mf)
115 mf = scf.newton(mf)
122 mf = scf.newton(mf)
136 mf = scf.newton(mf)
[all …]
/dports/science/lammps/lammps-stable_29Sep2021/doc/src/
H A Dnewton.rst1 .. index:: newton
3 newton command
11 newton flag
12 newton flag1 flag2
23 newton off
24 newton on off
36 Setting the pairwise newton flag to *off* means that if two
39 communicated. Similarly, for bonded interactions, newton *off* means
44 LAMMPS should produce the same answers for any newton flag settings,
49 faster to turn newton *off* for bonded interactions, to avoid extra
[all …]
/dports/science/py-scipy/scipy-1.7.1/scipy/optimize/tests/
H A Dtest_zeros.py265 x = zeros.newton(f, 3, tol=1e-6)
341 x = zeros.newton(f1, x0, args=args)
360 x = zeros.newton(f, t)
450 zeros.newton(func, 0.0, dfunc)
456 newton(np.sin, x0, np.cos)
597 result = zeros.newton(
604 result = zeros.newton(
619 r = zeros.newton(f_zeroder_root, x0=0)
706 result = zeros.newton(
713 result = zeros.newton(
[all …]
/dports/math/gismo/gismo-21.12.0/extensions/gsElasticity/examples/
H A Dspring_nonLinElast_3D.cpp94 gsIterative<real_t> newton(assembler); in main() local
95 newton.options().setInt("MaxIters",50); in main()
96 newton.options().setReal("AbsTol",1e-12); in main()
97 newton.options().setInt("Verbosity",solver_verbosity::all); in main()
98 newton.options().setInt("Solver",linear_solver::LDLT); in main()
105 newton.compute(); in main()
106 gsInfo << newton.status() << std::endl; in main()
107 gsVector<> linSolVector = newton.solution(); in main()
109 newton.solve(); in main()
118 assembler.constructSolution(linSolVector,newton.allFixedDofs(),solutionLinear); in main()
[all …]
H A Dterrific_nonLinElast_3D.cpp85 gsIterative<real_t> newton(assembler); in main() local
86 newton.options().setInt("MaxIters",50); in main()
87 newton.options().setReal("AbsTol",1e-12); in main()
88 newton.options().setInt("Verbosity",solver_verbosity::all); in main()
89 newton.options().setInt("Solver",linear_solver::LDLT); in main()
94 newton.solve(); in main()
103 assembler.constructSolution(newton.solution(),newton.allFixedDofs(),solutionNonlinear); in main()
/dports/science/pcmsolver/pcmsolver-1.3.0/tests/utils/
H A Dutils_newton-potential.cpp58 Eigen::VectorXd newton = variable
62 REQUIRE(newton.size() == mep.size());
64 REQUIRE(newton(i) == Approx(mep(i)));
72 Eigen::VectorXd newton = variable
77 REQUIRE(newton.size() == mep.size());
79 REQUIRE(newton(i) == Approx(mep(i)));
89 Eigen::VectorXd newton = variable
94 REQUIRE(newton.size() == mep.size());
96 REQUIRE(newton(i) == Approx(mep(i)));
/dports/science/lammps/lammps-stable_29Sep2021/examples/python/
H A Dlog.27Nov18.pair_python_hybrid.g++.143 attributes: half, newton on
48 attributes: half, newton on
53 attributes: half, newton on
55 stencil: half/bin/3d/newton
101 attributes: half, newton on
106 attributes: half, newton on
111 attributes: half, newton on
113 stencil: half/bin/3d/newton
124 attributes: half, newton on
129 attributes: half, newton on
[all …]
H A Dlog.27Nov18.pair_python_hybrid.g++.443 attributes: half, newton on
48 attributes: half, newton on
53 attributes: half, newton on
55 stencil: half/bin/3d/newton
101 attributes: half, newton on
106 attributes: half, newton on
111 attributes: half, newton on
113 stencil: half/bin/3d/newton
124 attributes: half, newton on
129 attributes: half, newton on
[all …]
H A Dlog.27Nov18.pair_python_coulomb.g++.462 attributes: half, newton on
63 pair build: half/bin/newton
64 stencil: half/bin/3d/newton
67 attributes: half, newton on
80 attributes: half, newton on
81 pair build: half/bin/newton
82 stencil: half/bin/3d/newton
85 attributes: half, newton on
98 attributes: half, newton on
99 pair build: half/bin/newton
[all …]
H A Dlog.27Nov18.pair_python_coulomb.g++.162 attributes: half, newton on
63 pair build: half/bin/newton
64 stencil: half/bin/3d/newton
67 attributes: half, newton on
80 attributes: half, newton on
81 pair build: half/bin/newton
82 stencil: half/bin/3d/newton
85 attributes: half, newton on
98 attributes: half, newton on
99 pair build: half/bin/newton
[all …]
/dports/science/py-pyscf/pyscf-2.0.1/pyscf/mcscf/test/
H A Dtest_n2_df.py194 self.assertTrue(isinstance(mcscf.CASCI(mf.newton(), 2, 2), mcscf.casci.CASCI))
195 self.assertTrue(isinstance(mcscf.CASCI(mf.density_fit().newton(), 2, 2), df._DFCASSCF))
201 self.assertTrue(isinstance(mcscf.CASSCF(mf.newton(), 2, 2), mcscf.mc1step.CASSCF))
202 self.assertTrue(isinstance(mcscf.CASSCF(mf.density_fit().newton(), 2, 2), df._DFCASSCF))
208 self.assertTrue(isinstance(mcscf.DFCASCI(mf.newton(), 2, 2), df._DFCASSCF))
209 self.assertTrue(isinstance(mcscf.DFCASCI(mf.density_fit().newton(), 2, 2), df._DFCASSCF))
210 self.assertTrue(isinstance(mcscf.DFCASCI(mf.newton().density_fit(), 2, 2), df._DFCASSCF))
215 self.assertTrue(isinstance(mcscf.DFCASSCF(mf.newton(), 2, 2), df._DFCASSCF))
222 self.assertTrue(isinstance(mcscf.CASCI(msym.newton(), 2, 2), mcscf.casci_symm.CASCI))
223 self.assertTrue(isinstance(mcscf.CASCI(msym.density_fit().newton(), 2, 2), df._DFCASSCF))
[all …]
/dports/science/py-pyscf/pyscf-2.0.1/pyscf/soscf/test/
H A Dtest_newton_ah.py109 nr = scf.newton(mf)
119 nr = scf.newton(mf)
130 nr = scf.newton(mf)
148 nr = scf.newton(mf)
159 nr = scf.newton(mf)
170 nr = scf.newton(mf)
182 nr = scf.newton(mf)
195 nr = scf.newton(mf)
207 nr = scf.newton(mf)
223 nr = scf.newton(mf)
[all …]
/dports/audio/praat/praat-6.2.03/external/gsl/
H A Dgsl_multifit__lmder.c47 gsl_vector *newton;
130 if (newton == 0)
140 state->newton = newton;
150 gsl_vector_free (newton);
165 gsl_vector_free (newton);
181 gsl_vector_free (newton);
198 gsl_vector_free (newton);
216 gsl_vector_free (newton);
236 gsl_vector_free (newton);
256 gsl_vector_free (newton);
[all …]
/dports/math/gsl/gsl-2.7/multifit/
H A Dlmder.c48 gsl_vector *newton; member
141 if (newton == 0) in lmder_alloc()
151 state->newton = newton; in lmder_alloc()
161 gsl_vector_free (newton); in lmder_alloc()
176 gsl_vector_free (newton); in lmder_alloc()
192 gsl_vector_free (newton); in lmder_alloc()
209 gsl_vector_free (newton); in lmder_alloc()
227 gsl_vector_free (newton); in lmder_alloc()
247 gsl_vector_free (newton); in lmder_alloc()
267 gsl_vector_free (newton); in lmder_alloc()
[all …]
/dports/emulators/mess/mame-mame0226/src/mame/drivers/
H A Dnewton.cpp72 static INPUT_PORTS_START( newton ) in INPUT_PORTS_START() argument
185 CONS( 1992, newtnotp, 0, 0, gen1, newton, newton_state, empty_init, "Apple Computer",…
186 CONS( 1993, newtonmp, 0, 0, gen1, newton, newton_state, empty_init, "Apple Computer",…
187 CONS( 1993, spi7000, 0, 0, gen1, newton, newton_state, empty_init, "Sharp", "ExpertP…
188 CONS( 1994, mp110, 0, 0, gen1, newton, newton_state, empty_init, "Apple Computer",…
189 CONS( 1995, mp120, 0, 0, mp120, newton, newton_state, empty_init, "Apple Computer",…
190 CONS( 1995, motmarco, 0, 0, marco, newton, newton_state, empty_init, "Motorola", "Marc…
191 CONS( 1996, mp130, 0, 0, mp130, newton, newton_state, empty_init, "Apple Computer",…
192 CONS( 1997, emate, 0, 0, emate, newton, newton_state, empty_init, "Apple Computer",…
193 CONS( 1997, mp2000, 0, 0, mp2000, newton, newton_state, empty_init, "Apple Computer",…
[all …]
/dports/emulators/mame/mame-mame0226/src/mame/drivers/
H A Dnewton.cpp72 static INPUT_PORTS_START( newton ) in INPUT_PORTS_START() argument
185 CONS( 1992, newtnotp, 0, 0, gen1, newton, newton_state, empty_init, "Apple Computer",…
186 CONS( 1993, newtonmp, 0, 0, gen1, newton, newton_state, empty_init, "Apple Computer",…
187 CONS( 1993, spi7000, 0, 0, gen1, newton, newton_state, empty_init, "Sharp", "ExpertP…
188 CONS( 1994, mp110, 0, 0, gen1, newton, newton_state, empty_init, "Apple Computer",…
189 CONS( 1995, mp120, 0, 0, mp120, newton, newton_state, empty_init, "Apple Computer",…
190 CONS( 1995, motmarco, 0, 0, marco, newton, newton_state, empty_init, "Motorola", "Marc…
191 CONS( 1996, mp130, 0, 0, mp130, newton, newton_state, empty_init, "Apple Computer",…
192 CONS( 1997, emate, 0, 0, emate, newton, newton_state, empty_init, "Apple Computer",…
193 CONS( 1997, mp2000, 0, 0, mp2000, newton, newton_state, empty_init, "Apple Computer",…
[all …]
/dports/devel/bsdowl/bsdowl-2.2.1/Wiki/
H A DDevelopOCamlSoftware.md188 ocamlc -c -o newton.cmo newton.ml
189 ocamlc -a -o newton.cma newton.cmo
249 ocamlc -c -o newton.cmi newton.mli
250 ocamlc -c -o newton.cmo newton.ml
251 ocamlc -a -o newton.cma newton.cmo
311 ocamlc -c -o newton.cmi newton.mli
312 ocamlc -c -o newton.cmo newton.ml
313 ocamlc -a -o newton.cma newton.cmo
335 ocamlc -c -o newton.cmi newton.mli
336 ocamlc -c -o newton.cmo newton.ml
[all …]
/dports/science/cp2k/cp2k-2e995eec7fd208c8a72d9544807bd8b8ba8cd1cc/tests/QS/regtest-cdft-4-2/
H A DTEST_FILES8 HeH-cdft-newton-fd1backward.inp 1 9e-04 -2.80114428543899
9 HeH-cdft-newton-fd2.inp 1 9e-04 -2.71354237564800
10 HeH-cdft-newton-fd1central.inp 1 3e-04 -2.76375295298293
12 HeH-cdft-newton-ls-fd2backward.inp 1 2e-03 -2.44853002459689
14 HeH-cdft-newton-fd1backward-restjacobian.inp 1 9e-04 -2.80098856516107
16 HeH-cdft-newton-contls-fd2backward.inp 1 2e-03 -2.43211811596821
/dports/science/cp2k-data/cp2k-7.1.0/tests/QS/regtest-cdft-4-2/
H A DTEST_FILES8 HeH-cdft-newton-fd1backward.inp 1 9e-04 -2.80114428543899
9 HeH-cdft-newton-fd2.inp 1 9e-04 -2.71354237564800
10 HeH-cdft-newton-fd1central.inp 1 3e-04 -2.76375295298293
12 HeH-cdft-newton-ls-fd2backward.inp 1 2e-03 -2.44853002459689
14 HeH-cdft-newton-fd1backward-restjacobian.inp 1 9e-04 -2.80098856516107
16 HeH-cdft-newton-contls-fd2backward.inp 1 2e-03 -2.43211811596821

12345678910>>...93