代码搜索:Solver

找到约 5,733 项符合「Solver」的源代码

代码结果 5,733
www.eeworm.com/read/400650/2348721

c unsteady_solver.c

#include "diff_solver.h" #include "diff_system.h" #include "dof_map.h" #include "numeric_vector.h" #include "unsteady_solver.h" UnsteadySolver::UnsteadySolver (sys_type& s) : TimeSolver(s),
www.eeworm.com/read/400650/2348725

c time_solver.c

#include "diff_solver.h" #include "diff_system.h" #include "dof_map.h" #include "numeric_vector.h" #include "time_solver.h" TimeSolver::TimeSolver (sys_type& s) : quiet(true), reduce_deltat_
www.eeworm.com/read/400650/2348730

c steady_solver.c

#include "diff_solver.h" #include "diff_system.h" #include "steady_solver.h" SteadySolver::~SteadySolver () { } bool SteadySolver::element_residual(bool request_jacobian) { // If a fixed sol
www.eeworm.com/read/400650/2348731

c newton_solver.c

#include "cmath" // For isnan(), when it's defined #include "diff_system.h" #include "equation_systems.h" #include "libmesh_logging.h" #include "linear_solver.h" #include "newton_solver.h" #include
www.eeworm.com/read/400650/2348899

c eigen_solver.c

// $Id: eigen_solver.C 2788 2008-04-13 02:05:22Z roystgnr $ // The libMesh Finite Element Library. // Copyright (C) 2002-2007 Benjamin S. Kirk, John W. Peterson // This library is free software;
www.eeworm.com/read/400650/2348916

c linear_solver.c

// $Id: linear_solver.C 2865 2008-06-15 16:03:06Z benkirk $ // The libMesh Finite Element Library. // Copyright (C) 2002-2007 Benjamin S. Kirk, John W. Peterson // This library is free software;
www.eeworm.com/read/400650/2348919

c nonlinear_solver.c

// $Id: nonlinear_solver.C 2891 2008-06-25 15:25:47Z friedmud $ // The libMesh Finite Element Library. // Copyright (C) 2002-2007 Benjamin S. Kirk, John W. Peterson // This library is free softwa
www.eeworm.com/read/367631/9739330

f90 solver.f90

!求解方程组AX=B,其中A已经经过LU分解,结果存在数组B中 SUBROUTINE SOLVER(A,B,N) IMPLICIT NONE INTEGER N,I,K DOUBLE PRECISION S,A(N,N),B(N) DO I=2,N S=0 DO K=1,I-1 S=S+A(I,K)*B(K) END DO B(I)=B(I)-S E
www.eeworm.com/read/249774/12475202

h oneclass_solver.h

/* TinySVM -- Yet Another Tiny SVM Package $Id: oneclass_solver.h,v 1.4 2002/08/20 06:31:17 taku-ku Exp $; Copyright (C) 2001-2002 Taku Kudo All rights reserved.
www.eeworm.com/read/249774/12475233

cpp svm_solver.cpp

/* TinySVM -- Yet Another Tiny SVM Package $Id: svm_solver.cpp,v 1.4 2002/08/20 06:31:17 taku-ku Exp $; Copyright (C) 2001-2002 Taku Kudo All rights reserved. Thi