| Line | Id | CWE | Severity | Message |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Base/ContainerUtil.hpp |
| 38 | unsignedPositive | 570 | style | Unsigned expression 'd' can't be negative so it is unnecessary to test it. |
| 66 | throwInNoexceptFunction | 398 | error | Exception thrown in function declared not to throw exceptions. |
| 81 | throwInNoexceptFunction | 398 | error | Exception thrown in function declared not to throw exceptions. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Base/Data.hpp |
| 506 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Base/Exception.cpp |
| 49 | syntaxError | | error | syntax error: keyword 'try' is not allowed in global scope |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Base/HashMapReducer.hpp |
| 90 | knownEmptyContainer | 398 | style | Iterating over container 'u' that is always empty. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Base/TaggedTuple.hpp |
| 117 | internalAstError | | error | Syntax Error: AST broken, binary operator '>' doesn't have two operands. |
| 161 | throwInNoexceptFunction | 398 | error | Exception thrown in function declared not to throw exceptions. |
| 254 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Base/Vector.hpp |
| 143 | throwInNoexceptFunction | 398 | error | Exception thrown in function declared not to throw exceptions. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Control/FileConv/CmdLine/Parser.cpp |
| 119 | unreadVariable | 563 | style | Variable 'oalias' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Control/HelpFactory.hpp |
| 50 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| 83 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Control/Inciter/InputDeck/Grammar.hpp |
| 394 | redundantCondition | 398 | style | Redundant condition: !sradius.empty(). 'A || (!A && B)' is equivalent to 'A || B' |
| 396 | redundantCondition | 398 | style | Redundant condition: !spoint.empty(). 'spoint.empty() || (!spoint.empty() && spoint.back().empty())' is equivalent to 'spoint.empty() || spoint.back().empty()' |
| 412 | redundantCondition | 398 | style | Redundant condition: !kradius.empty(). 'A || (!A && B)' is equivalent to 'A || B' |
| 414 | redundantCondition | 398 | style | Redundant condition: !kpoint.empty(). 'kpoint.empty() || (!kpoint.empty() && kpoint.back().empty())' is equivalent to 'kpoint.empty() || kpoint.back().empty()' |
| 766 | unreadVariable | 563 | style | Variable 'ndof' is assigned a value that is never used. |
| 767 | unreadVariable | 563 | style | Variable 'rdof' is assigned a value that is never used. |
| 1011 | constVariable | 398 | style | Variable 'tolref' can be declared with const |
| 1127 | useStlAlgorithm | 398 | style | Consider using std::transform algorithm instead of a raw loop. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Control/Inciter/InputDeck/InputDeck.hpp |
| 475 | useStlAlgorithm | 398 | style | Consider using std::copy algorithm instead of a raw loop. |
| 491 | useStlAlgorithm | 398 | style | Consider using std::copy algorithm instead of a raw loop. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Control/Inciter/OutVar.hpp |
| 57 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Control/MeshConv/CmdLine/Parser.cpp |
| 119 | unreadVariable | 563 | style | Variable 'oalias' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Control/StatCtr.hpp |
| 336 | constVariable | 398 | style | Variable 'kind' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Control/SystemComponents.hpp |
| 184 | throwInNoexceptFunction | 398 | error | Exception thrown in function declared not to throw exceptions. |
| 189 | knownConditionTrueFalse | 571 | style | Condition '!found' is always true |
| 205 | shadowFunction | 398 | style | Local variable 'depvar' shadows outer function |
| 221 | shadowFunction | 398 | style | Local variable 'depvar' shadows outer function |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/DiffEq/Beta/MixMassFractionBeta.hpp |
| 327 | constVariable | 398 | style | Variable 'Y' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/DiffEq/Dirichlet/MixDirichlet.hpp |
| 237 | constParameter | 398 | style | Parameter 'particles' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/DiffEq/Dirichlet/MixDirichletCoeffPolicy.cpp |
| 48 | funcArgOrderDifferent | 683 | warning | Function 'MixDirichletCoeffConst' argument order different: declaration 'ncomp, norm, b_, S_, kprime_, rho_, b, kprime, S, rho, r, k' definition 'ncomp, norm, b_, S_, kprime_, rho_, b, S, kprime, rho, r, k' |
| 109 | constParameter | 398 | style | Parameter 'S' can be declared with const |
| 147 | funcArgOrderDifferent | 683 | warning | Function 'MixDirichletHomogeneous' argument order different: declaration 'ncomp, norm, b_, S_, kprime_, rho_, b, kprime, S, rho, r, k' definition 'ncomp, norm, b_, S_, kprime_, rho_, b, S, kprime, rho, r, k' |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/IO/ExodusIIMeshReader.cpp |
| 327 | unreadVariable | 563 | style | Variable 'nnode' is assigned a value that is never used. |
| 635 | useStlAlgorithm | 398 | style | Consider using std::transform algorithm instead of a raw loop. |
| 878 | useStlAlgorithm | 398 | style | Consider using std::fill or std::generate algorithm instead of a raw loop. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/IO/FileConvWriter.cpp |
| 30 | uninitMemberVar | 398 | warning | Member variable 'FileConvWriter::m_nodal_size' is not initialized in the constructor. |
| 41 | useInitializationList | 398 | performance | Variable 'm_emw' is assigned in constructor body. Consider performing initialization in initialization list. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/IO/MeshWriter.hpp |
| 47 | uninitMemberVar | 398 | warning | Member variable 'MeshWriter::m_filetype' is not initialized in the constructor. |
| 47 | uninitMemberVar | 398 | warning | Member variable 'MeshWriter::m_benchmark' is not initialized in the constructor. |
| 47 | uninitMemberVar | 398 | warning | Member variable 'MeshWriter::m_nchare' is not initialized in the constructor. |
| 47 | uninitMemberVar | 398 | warning | Member variable 'MeshWriter::m_nmesh' is not initialized in the constructor. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/IO/Omega_h_MeshReader.cpp |
| 133 | constParameter | 398 | style | Parameter 'bface' can be declared with const |
| 148 | constParameter | 398 | style | Parameter 'bface' can be declared with const |
| 149 | constParameter | 398 | style | Parameter 'faces' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/IO/PDFWriter.cpp |
| 962 | unreadVariable | 563 | style | Variable 'nbix' is assigned a value that is never used. |
| 962 | unreadVariable | 563 | style | Variable 'nbiy' is assigned a value that is never used. |
| 1097 | unreadVariable | 563 | style | Variable 'nbix' is assigned a value that is never used. |
| 1097 | unreadVariable | 563 | style | Variable 'nbiy' is assigned a value that is never used. |
| 1097 | unreadVariable | 563 | style | Variable 'nbiz' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/IO/RootMeshWriter.cpp |
| 37 | noCopyConstructor | 398 | warning | Class 'RootMeshWriter' does not have a copy constructor which is recommended since it has dynamic memory/resource allocation(s). |
| 37 | noOperatorEq | 398 | warning | Class 'RootMeshWriter' does not have a operator= which is recommended since it has dynamic memory/resource allocation(s). |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/IO/UGRIDMeshReader.cpp |
| 35 | unusedVariable | 563 | style | Unused variable: s |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/ALECG.cpp |
| 119 | stlFindInsert | 398 | performance | Searching before insertion is not necessary. |
| 121 | stlFindInsert | 398 | performance | Searching before insertion is not necessary. |
| 172 | useStlAlgorithm | 398 | style | Consider using std::transform algorithm instead of a raw loop. |
| 176 | useStlAlgorithm | 398 | style | Consider using std::transform algorithm instead of a raw loop. |
| 719 | useStlAlgorithm | 398 | style | Consider using std::transform algorithm instead of a raw loop. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/AMR/edge_store.hpp |
| 98 | assertWithSideEffect | 398 | warning | Assert statement calls a function which may have desired side effects: 'exists'. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/AMR/mesh_adapter.cpp |
| 980 | constVariable | 398 | style | Variable 'element' can be declared with const |
| 1371 | useStlAlgorithm | 398 | style | Consider using std::transform algorithm instead of a raw loop. |
| 1431 | useStlAlgorithm | 398 | style | Consider using std::transform algorithm instead of a raw loop. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/AMR/refinement.hpp |
| 50 | constVariable | 398 | style | Variable 'master_element' can be declared with const |
| 890 | constVariable | 398 | style | Variable 'parent' can be declared with const |
| 940 | constVariable | 398 | style | Variable 'parent' can be declared with const |
| 1031 | constVariable | 398 | style | Variable 'master_element' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/AMR/tet_store.hpp |
| 739 | constVariable | 398 | style | Variable 'parent' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/DG.cpp |
| 670 | unmatchedSuppression | | information | Unmatched suppression: useStlAlgorithm |
| 691 | unreadVariable | 563 | style | Variable 'ncoord' is assigned a value that is never used. |
| 700 | unreadVariable | 563 | style | Variable 'e' is assigned a value that is never used. |
| 769 | unreadVariable | 563 | style | Variable 'ncoord' is assigned a value that is never used. |
| 802 | unreadVariable | 563 | style | Variable 'ip' is assigned a value that is never used. |
| 884 | unreadVariable | 563 | style | Variable 'nmatch' is assigned a value that is never used. |
| 1234 | unreadVariable | 563 | style | Variable 'd' is assigned a value that is never used. |
| 1809 | unreadVariable | 563 | style | Variable 'pref' is assigned a value that is never used. |
| 2104 | unreadVariable | 563 | style | Variable 'pref' is assigned a value that is never used. |
| 2263 | unreadVariable | 563 | style | Variable 'pref' is assigned a value that is never used. |
| 2537 | unreadVariable | 563 | style | Variable 'pn' is assigned a value that is never used. |
| 2538 | unreadVariable | 563 | style | Variable 'unprop' is assigned a value that is never used. |
| 2539 | unreadVariable | 563 | style | Variable 'pnprop' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/DG.hpp |
| 319 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/DiagCG.cpp |
| 104 | stlFindInsert | 398 | performance | Searching before insertion is not necessary. |
| 581 | constParameter | 398 | style | Parameter 'dif' can be declared with const |
| 750 | unreadVariable | 563 | style | Variable 'd' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/DiagReducer.cpp |
| 68 | uninitvar | 457 | error | Uninitialized variable: meshid |
| 76 | uninitvar | 457 | error | Uninitialized variable: mid |
| 79 | uninitvar | 457 | error | Uninitialized variable: mid |
| 79 | unreadVariable | 563 | style | Variable 'meshid' is assigned a value that is never used. |
| 84 | unsignedLessThanZero | 570 | style | Checking if unsigned expression 'i' is less than zero. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/Discretization.cpp |
| 349 | useStlAlgorithm | 398 | style | Consider using std::any_of, std::all_of, std::none_of, or std::accumulate algorithm instead of a raw loop. |
| 373 | useStlAlgorithm | 398 | style | Consider using std::copy_if algorithm instead of a raw loop. |
| 472 | stlFindInsert | 398 | performance | Searching before insertion is not necessary. |
| 807 | useStlAlgorithm | 398 | style | Consider using std::accumulate algorithm instead of a raw loop. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/ElemDiagnostics.cpp |
| 116 | funcArgOrderDifferent | 683 | warning | Function 'compute_diag' argument order different: declaration 'd, ndofel, nchGhost, geoElem, pIndex, u, diag' definition 'd, rdof, nchGhost, geoElem, ndofel, u, diag' |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/FaceData.hpp |
| 76 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/FluxCorrector.cpp |
| 42 | constParameter | 398 | style | Parameter 'P' can be declared with const |
| 82 | unreadVariable | 563 | style | Variable 'ncomp' is assigned a value that is never used. |
| 83 | unreadVariable | 563 | style | Variable 'ctau' is assigned a value that is never used. |
| 270 | unreadVariable | 563 | style | Variable 'ncomp' is assigned a value that is never used. |
| 271 | unreadVariable | 563 | style | Variable 'ctau' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/FluxCorrector.hpp |
| 158 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/Partitioner.hpp |
| 77 | uninitMemberVar | 398 | warning | Member variable 'Partitioner::m_meshid' is not initialized in the constructor. |
| 77 | uninitMemberVar | 398 | warning | Member variable 'Partitioner::m_ndist' is not initialized in the constructor. |
| 77 | uninitMemberVar | 398 | warning | Member variable 'Partitioner::m_nchare' is not initialized in the constructor. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/Refiner.cpp |
| 354 | unreadVariable | 563 | style | Variable 'chunksize' is assigned a value that is never used. |
| 365 | unreadVariable | 563 | style | Variable 'B' is assigned a value that is never used. |
| 366 | unreadVariable | 563 | style | Variable 'C' is assigned a value that is never used. |
| 436 | useStlAlgorithm | 398 | style | Consider using std::copy_if algorithm instead of a raw loop. |
| 640 | unreadVariable | 563 | style | Variable 'local_needs_refining_orig' is assigned a value that is never used. |
| 641 | unreadVariable | 563 | style | Variable 'local_lock_case_orig' is assigned a value that is never used. |
| 825 | variableScope | 398 | style | The scope of the variable 'V' can be reduced. |
| 1376 | variableScope | 398 | style | The scope of the variable 'V' can be reduced. |
| 1559 | unreadVariable | 563 | style | Variable 'addedNodes' is assigned a value that is never used. |
| 1564 | unreadVariable | 563 | style | Variable 'rid[l]' is assigned a value that is never used. |
| 1772 | variableScope | 398 | style | The scope of the variable 'facecnt' can be reduced. |
| 1990 | useStlAlgorithm | 398 | style | Consider using std::transform algorithm instead of a raw loop. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/Scheme.hpp |
| 166 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| 227 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| 269 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/Sorter.cpp |
| 123 | unreadVariable | 563 | style | Variable 'scheme' is assigned a value that is never used. |
| 565 | useStlAlgorithm | 398 | style | Consider using std::transform algorithm instead of a raw loop. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Inciter/Transporter.cpp |
| 170 | useStlAlgorithm | 398 | style | Consider using std::transform algorithm instead of a raw loop. |
| 520 | unreadVariable | 563 | style | Variable 'centering' is assigned a value that is never used. |
| 1253 | uninitvar | 457 | error | Uninitialized variable: meshid |
| 1257 | uninitvar | 457 | error | Uninitialized variable: meshid |
| 1269 | containerOutOfBounds | 398 | error | Out of bounds access in expression 'pdf[1]' because 'pdf' is empty. |
| 1275 | containerOutOfBounds | 398 | error | Out of bounds access in expression 'pdf[2]' because 'pdf' is empty. |
| 1379 | uninitvar | 457 | error | Uninitialized variable: meshid |
| 1383 | uninitvar | 457 | error | Uninitialized variable: meshid |
| 1383 | unreadVariable | 563 | style | Variable 'id' is assigned a value that is never used. |
| 1389 | unsignedLessThanZero | 570 | style | Checking if unsigned expression 'i' is less than zero. |
| 1398 | uninitvar | 457 | error | Uninitialized variable: meshid |
| 1403 | unreadVariable | 563 | style | Variable 'n' is assigned a value that is never used. |
| 1405 | unreadVariable | 563 | style | Variable 'n' is assigned a value that is never used. |
| 1409 | uninitvar | 457 | error | Uninitialized variable: meshid |
| 1422 | uninitvar | 457 | error | Uninitialized variable: meshid |
| 1440 | uninitvar | 457 | error | Uninitialized variable: meshid |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/LinearSolver/CSR.cpp |
| 21 | syntaxError | | error | syntax error: keyword 'try' is not allowed in global scope |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/LinearSolver/CSR.hpp |
| 83 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/LinearSolver/ConjugateGradients.cpp |
| 35 | uninitMemberVar | 398 | warning | Member variable 'ConjugateGradients::m_tol' is not initialized in the constructor. |
| 216 | useStlAlgorithm | 398 | style | Consider using std::transform algorithm instead of a raw loop. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/LinearSolver/ConjugateGradients.hpp |
| 66 | uninitMemberVar | 398 | warning | Member variable 'ConjugateGradients::m_tol' is not initialized in the constructor. |
| 79 | uninitMemberVar | 398 | warning | Member variable 'ConjugateGradients::m_nr' is not initialized in the constructor. |
| 79 | uninitMemberVar | 398 | warning | Member variable 'ConjugateGradients::m_nb' is not initialized in the constructor. |
| 79 | uninitMemberVar | 398 | warning | Member variable 'ConjugateGradients::m_nq' is not initialized in the constructor. |
| 79 | uninitMemberVar | 398 | warning | Member variable 'ConjugateGradients::m_normb' is not initialized in the constructor. |
| 79 | uninitMemberVar | 398 | warning | Member variable 'ConjugateGradients::m_it' is not initialized in the constructor. |
| 79 | uninitMemberVar | 398 | warning | Member variable 'ConjugateGradients::m_maxit' is not initialized in the constructor. |
| 79 | uninitMemberVar | 398 | warning | Member variable 'ConjugateGradients::m_tol' is not initialized in the constructor. |
| 79 | uninitMemberVar | 398 | warning | Member variable 'ConjugateGradients::m_rho' is not initialized in the constructor. |
| 79 | uninitMemberVar | 398 | warning | Member variable 'ConjugateGradients::m_rho0' is not initialized in the constructor. |
| 79 | uninitMemberVar | 398 | warning | Member variable 'ConjugateGradients::m_alpha' is not initialized in the constructor. |
| 79 | uninitMemberVar | 398 | warning | Member variable 'ConjugateGradients::m_converged' is not initialized in the constructor. |
| 79 | uninitMemberVar | 398 | warning | Member variable 'ConjugateGradients::m_nx' is not initialized in the constructor. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Main/FileConv.cpp |
| 57 | unmatchedSuppression | | information | Unmatched suppression: noConstructor |
| 76 | noExplicitConstructor | 398 | style | Class 'Main' has a constructor with 1 argument that is not explicit. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Main/FileConvDriver.cpp |
| 35 | useInitializationList | 398 | performance | Variable 'm_input' is assigned in constructor body. Consider performing initialization in initialization list. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Main/Inciter.cpp |
| 160 | unmatchedSuppression | | information | Unmatched suppression: noConstructor |
| 181 | noExplicitConstructor | 398 | style | Class 'Main' has a constructor with 1 argument that is not explicit. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Main/InciterPrint.hpp |
| 121 | unusedPrivateFunction | 398 | style | Unused private function: 'InciterPrint::PDEName' |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Main/MeshConv.cpp |
| 58 | unmatchedSuppression | | information | Unmatched suppression: noConstructor |
| 77 | noExplicitConstructor | 398 | style | Class 'Main' has a constructor with 1 argument that is not explicit. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Main/MeshConvDriver.cpp |
| 41 | useInitializationList | 398 | performance | Variable 'm_input' is assigned in constructor body. Consider performing initialization in initialization list. |
| 43 | useInitializationList | 398 | performance | Variable 'm_output' is assigned in constructor body. Consider performing initialization in initialization list. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Main/RNGTest.cpp |
| 189 | unmatchedSuppression | | information | Unmatched suppression: noConstructor |
| 211 | noExplicitConstructor | 398 | style | Class 'Main' has a constructor with 1 argument that is not explicit. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Main/UnitTest.cpp |
| 120 | unmatchedSuppression | | information | Unmatched suppression: noConstructor |
| 142 | noExplicitConstructor | 398 | style | Class 'Main' has a constructor with 1 argument that is not explicit. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Main/Walker.cpp |
| 168 | unmatchedSuppression | | information | Unmatched suppression: noConstructor |
| 190 | noExplicitConstructor | 398 | style | Class 'Main' has a constructor with 1 argument that is not explicit. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Main/WalkerPrint.hpp |
| 154 | unusedPrivateFunction | 398 | style | Unused private function: 'WalkerPrint::DiffEqName' |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Mesh/DerivedData.cpp |
| 305 | constVariable | 398 | style | Variable 'esup1' can be declared with const |
| 306 | constVariable | 398 | style | Variable 'esup2' can be declared with const |
| 407 | constVariable | 398 | style | Variable 'esup1' can be declared with const |
| 408 | constVariable | 398 | style | Variable 'esup2' can be declared with const |
| 495 | constVariable | 398 | style | Variable 'esup2' can be declared with const |
| 570 | constVariable | 398 | style | Variable 'esup2' can be declared with const |
| 788 | constVariable | 398 | style | Variable 'esup1' can be declared with const |
| 789 | constVariable | 398 | style | Variable 'esup2' can be declared with const |
| 870 | unreadVariable | 563 | style | Variable 'nnpf' is assigned a value that is never used. |
| 985 | unreadVariable | 563 | style | Variable 'nfpe' is assigned a value that is never used. |
| 985 | unreadVariable | 563 | style | Variable 'nnpf' is assigned a value that is never used. |
| 990 | unreadVariable | 563 | style | Variable 'nelem' is assigned a value that is never used. |
| 1175 | unreadVariable | 563 | style | Variable 'nnpe' is assigned a value that is never used. |
| 1175 | unreadVariable | 563 | style | Variable 'nnpf' is assigned a value that is never used. |
| 1245 | unreadVariable | 563 | style | Variable 'tag' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Mesh/Reorder.cpp |
| 157 | useStlAlgorithm | 398 | style | Consider using std::transform algorithm instead of a raw loop. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/CompFlow/CGCompFlow.hpp |
| 750 | unreadVariable | 563 | style | Variable 'steady' is assigned a value that is never used. |
| 783 | constParameter | 398 | style | Parameter 'U' can be declared with const |
| 891 | constParameter | 398 | style | Parameter 'U' can be declared with const |
| 932 | constParameter | 398 | style | Parameter 'U' can be declared with const |
| 1583 | constParameter | 398 | style | Parameter 'R' can be declared with const |
| 1693 | variableScope | 398 | style | The scope of the variable 'nset' can be reduced. |
| 1693 | unreadVariable | 563 | style | Variable 'nset' is assigned a value that is never used. |
| 1694 | shadowFunction | 398 | style | Local variable 'sponge' shadows outer function |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/CompFlow/DGCompFlow.hpp |
| 239 | unreadVariable | 563 | style | Variable 'nelem' is assigned a value that is never used. |
| 550 | unreadVariable | 563 | style | Variable 'dSV_l' is assigned a value that is never used. |
| 667 | unreadVariable | 563 | style | Variable 'dgp' is assigned a value that is never used. |
| 976 | knownConditionTrueFalse | 571 | style | Condition 'fM>-1' is always true |
| 976 | knownConditionTrueFalse | 570 | style | Condition 'fM<0' is always false |
| 988 | knownConditionTrueFalse | 571 | style | Condition 'fM>=0' is always true |
| 1040 | unreadVariable | 563 | style | Variable 'ndof' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/CompFlow/Problem/FieldOutput.cpp |
| 61 | unreadVariable | 563 | style | Variable 'ru' is assigned a value that is never used. |
| 62 | unreadVariable | 563 | style | Variable 'rv' is assigned a value that is never used. |
| 63 | unreadVariable | 563 | style | Variable 'rw' is assigned a value that is never used. |
| 64 | unreadVariable | 563 | style | Variable 're' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/CompFlow/Problem/RayleighTaylor.hpp |
| 77 | shadowFunction | 398 | style | Local variable 'k' shadows outer function |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/ConfigureCompFlow.cpp |
| 114 | shadowFunction | 398 | style | Local variable 'cv' shadows outer function |
| 124 | shadowFunction | 398 | style | Local variable 'mu' shadows outer function |
| 129 | shadowFunction | 398 | style | Local variable 'k' shadows outer function |
| 295 | useStlAlgorithm | 398 | style | Consider using std::transform algorithm instead of a raw loop. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/ConfigureMultiMat.hpp |
| 66 | shadowFunction | 398 | style | Local variable 'k' shadows outer function |
| 86 | shadowFunction | 398 | style | Local variable 'k' shadows outer function |
| 106 | shadowFunction | 398 | style | Local variable 'k' shadows outer function |
| 143 | shadowFunction | 398 | style | Local variable 'k' shadows outer function |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/ConfigureTransport.hpp |
| 65 | shadowFunction | 398 | style | Local variable 'k' shadows outer function |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/DGPDE.hpp |
| 65 | unreadVariable | 563 | style | Variable 'cfg' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/Integrate/Basis.cpp |
| 166 | duplicateAssignExpression | 398 | style | Same expression used in consecutive assignments of 'db5dxi2' and 'db5dxi3'. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/Integrate/Boundary.cpp |
| 96 | unreadVariable | 563 | style | Variable 'ncomp' is assigned a value that is never used. |
| 97 | unreadVariable | 563 | style | Variable 'nprim' is assigned a value that is never used. |
| 174 | unreadVariable | 563 | style | Variable 'wt' is assigned a value that is never used. |
| 214 | constParameter | 398 | style | Parameter 'R' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/Integrate/Initialize.cpp |
| 168 | constParameter | 398 | style | Parameter 'unk' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/Integrate/Mass.cpp |
| 34 | unreadVariable | 563 | style | Variable 'nelem' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/Integrate/Surface.cpp |
| 84 | unreadVariable | 563 | style | Variable 'ncomp' is assigned a value that is never used. |
| 85 | unreadVariable | 563 | style | Variable 'nprim' is assigned a value that is never used. |
| 191 | unreadVariable | 563 | style | Variable 'wt' is assigned a value that is never used. |
| 239 | constParameter | 398 | style | Parameter 'R' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/Limiter.cpp |
| 1261 | variableScope | 398 | style | The scope of the variable 'phi_dir' can be reduced. |
| 1269 | redundantAssignment | 563 | style | Variable 'phi_dir' is reassigned a value before the old one has been used. |
| 1590 | unreadVariable | 563 | style | Variable 'ncomp' is assigned a value that is never used. |
| 1591 | unreadVariable | 563 | style | Variable 'nprim' is assigned a value that is never used. |
| 1665 | unreadVariable | 563 | style | Variable 'wt' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/MultiMat/DGMultiMat.hpp |
| 92 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 118 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 203 | constParameter | 398 | style | Parameter 'unk' can be declared with const |
| 213 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 257 | constParameter | 398 | style | Parameter 'prim' can be declared with const |
| 260 | unreadVariable | 563 | style | Variable 'rdof' is assigned a value that is never used. |
| 261 | unreadVariable | 563 | style | Variable 'ndof' is assigned a value that is never used. |
| 262 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 262 | unreadVariable | 563 | style | Variable 'nmat' is assigned a value that is never used. |
| 383 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 668 | unreadVariable | 563 | style | Variable 'nelem' is assigned a value that is never used. |
| 669 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 669 | unreadVariable | 563 | style | Variable 'nmat' is assigned a value that is never used. |
| 753 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 799 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 920 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 955 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 962 | unreadVariable | 563 | style | Variable 'ugp' is assigned a value that is never used. |
| 962 | unreadVariable | 563 | style | Variable 'pgp' is assigned a value that is never used. |
| 1076 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 1107 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 1117 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 1154 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 1251 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 1256 | unreadVariable | 563 | style | Variable 'rho' is assigned a value that is never used. |
| 1328 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 1328 | unreadVariable | 563 | style | Variable 'nmat' is assigned a value that is never used. |
| 1416 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 1487 | shadowFunction | 398 | style | Local variable 'nmat' shadows outer function |
| 1490 | unreadVariable | 563 | style | Variable 'fp' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/MultiMat/Problem/SodShocktube.hpp |
| 52 | unreadVariable | 563 | style | Variable 's' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/MultiMat/Problem/UserDefined.cpp |
| 49 | unreadVariable | 563 | style | Variable 'nmat' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/MultiMat/Problem/UserDefined.hpp |
| 54 | unreadVariable | 563 | style | Variable 's' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/MultiMat/Problem/WaterAirShocktube.hpp |
| 53 | unreadVariable | 563 | style | Variable 's' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/PrefIndicator.cpp |
| 147 | unreadVariable | 563 | style | Variable 'ncomp' is assigned a value that is never used. |
| 228 | unreadVariable | 563 | style | Variable 'state[1]' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/Reconstruction.cpp |
| 141 | unreadVariable | 563 | style | Variable 'nelem' is assigned a value that is never used. |
| 277 | constParameter | 398 | style | Parameter 'W' can be declared with const |
| 319 | constParameter | 398 | style | Parameter 'W' can be declared with const |
| 342 | unreadVariable | 563 | style | Variable 'lhs_ls' is assigned a value that is never used. |
| 404 | constParameter | 398 | style | Parameter 'W' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/Transport/CGTransport.hpp |
| 486 | unreadVariable | 563 | style | Variable 'steady' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/Transport/DGTransport.hpp |
| 194 | unreadVariable | 563 | style | Variable 'nelem' is assigned a value that is never used. |
| 195 | unreadVariable | 563 | style | Variable 'intsharp' is assigned a value that is never used. |
| 317 | unreadVariable | 563 | style | Variable 'ndof' is assigned a value that is never used. |
| 318 | unreadVariable | 563 | style | Variable 'rdof' is assigned a value that is never used. |
| 319 | unreadVariable | 563 | style | Variable 'intsharp' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/PDE/Transport/Problem/CylVortex.cpp |
| 44 | unreadVariable | 563 | style | Variable 'vel' is assigned a value that is never used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Particles/Tracker.hpp |
| 307 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/RNGTest/TestU01Stack.hpp |
| 76 | ignoredReturnValue | 252 | warning | Return value of function std::bind() is not used. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/RNGTest/TestU01Suite.cpp |
| 66 | useStlAlgorithm | 398 | style | Consider using std::transform algorithm instead of a raw loop. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Statistics/BiPDF.hpp |
| 114 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Statistics/PDFReducer.cpp |
| 30 | uninitvar | 457 | error | Uninitialized variable: meshid |
| 38 | uninitvar | 457 | error | Uninitialized variable: meshid |
| 63 | uninitvar | 457 | error | Uninitialized variable: meshid |
| 71 | uninitvar | 457 | error | Uninitialized variable: mid |
| 74 | uninitvar | 457 | error | Uninitialized variable: mid |
| 76 | containerOutOfBounds | 398 | error | Out of bounds access in expression 'updf[i++]' because 'updf' is empty. |
| 76 | knownEmptyContainer | 398 | style | Iterating over container 'u' that is always empty. |
| 80 | uninitvar | 457 | error | Uninitialized variable: meshid |
| 150 | containerOutOfBounds | 398 | error | Out of bounds access in expression 'updf[i++]' because 'updf' is empty. |
| 150 | knownEmptyContainer | 398 | style | Iterating over container 'u' that is always empty. |
| 152 | containerOutOfBounds | 398 | error | Out of bounds access in expression 'bpdf[i++]' because 'bpdf' is empty. |
| 152 | knownEmptyContainer | 398 | style | Iterating over container 'b' that is always empty. |
| 154 | containerOutOfBounds | 398 | error | Out of bounds access in expression 'tpdf[i++]' because 'tpdf' is empty. |
| 154 | knownEmptyContainer | 398 | style | Iterating over container 't' that is always empty. |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Statistics/TriPDF.hpp |
| 123 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Statistics/UniPDF.hpp |
| 115 | constParameter | 398 | style | Parameter 'p' can be declared with const |
| /tmp/TeamCity-3/work/821a9fd6f64749d9/src/Walker/Distributor.cpp |
| 83 | unreadVariable | 563 | style | Variable 'nchare' is assigned a value that is never used. |