hillclimber 0.1.6__cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (475) hide show
  1. hillclimber/__init__.py +41 -0
  2. hillclimber/actions.py +53 -0
  3. hillclimber/analysis.py +590 -0
  4. hillclimber/biases.py +293 -0
  5. hillclimber/calc.py +22 -0
  6. hillclimber/cvs.py +1070 -0
  7. hillclimber/interfaces.py +133 -0
  8. hillclimber/metadynamics.py +416 -0
  9. hillclimber/nodes.py +6 -0
  10. hillclimber/opes.py +359 -0
  11. hillclimber/pycv.py +362 -0
  12. hillclimber/selectors.py +230 -0
  13. hillclimber/virtual_atoms.py +341 -0
  14. hillclimber-0.1.6.dist-info/METADATA +325 -0
  15. hillclimber-0.1.6.dist-info/RECORD +475 -0
  16. hillclimber-0.1.6.dist-info/WHEEL +6 -0
  17. hillclimber-0.1.6.dist-info/entry_points.txt +8 -0
  18. hillclimber-0.1.6.dist-info/licenses/LICENSE +165 -0
  19. hillclimber-0.1.6.dist-info/sboms/auditwheel.cdx.json +1 -0
  20. hillclimber.libs/libgomp-a49a47f9.so.1.0.0 +0 -0
  21. plumed/__init__.py +104 -0
  22. plumed/_lib/bin/plumed +0 -0
  23. plumed/_lib/bin/plumed-config +9 -0
  24. plumed/_lib/bin/plumed-patch +9 -0
  25. plumed/_lib/include/plumed/adjmat/AdjacencyMatrixBase.h +659 -0
  26. plumed/_lib/include/plumed/adjmat/ContactMatrix.h +59 -0
  27. plumed/_lib/include/plumed/asmjit/arch.h +228 -0
  28. plumed/_lib/include/plumed/asmjit/arm.h +43 -0
  29. plumed/_lib/include/plumed/asmjit/asmjit.h +69 -0
  30. plumed/_lib/include/plumed/asmjit/asmjit_apibegin.h +143 -0
  31. plumed/_lib/include/plumed/asmjit/asmjit_apiend.h +93 -0
  32. plumed/_lib/include/plumed/asmjit/asmjit_build.h +971 -0
  33. plumed/_lib/include/plumed/asmjit/assembler.h +183 -0
  34. plumed/_lib/include/plumed/asmjit/base.h +56 -0
  35. plumed/_lib/include/plumed/asmjit/codebuilder.h +944 -0
  36. plumed/_lib/include/plumed/asmjit/codecompiler.h +767 -0
  37. plumed/_lib/include/plumed/asmjit/codeemitter.h +528 -0
  38. plumed/_lib/include/plumed/asmjit/codeholder.h +777 -0
  39. plumed/_lib/include/plumed/asmjit/constpool.h +286 -0
  40. plumed/_lib/include/plumed/asmjit/cpuinfo.h +402 -0
  41. plumed/_lib/include/plumed/asmjit/func.h +1327 -0
  42. plumed/_lib/include/plumed/asmjit/globals.h +370 -0
  43. plumed/_lib/include/plumed/asmjit/inst.h +137 -0
  44. plumed/_lib/include/plumed/asmjit/logging.h +317 -0
  45. plumed/_lib/include/plumed/asmjit/misc_p.h +103 -0
  46. plumed/_lib/include/plumed/asmjit/moved_string.h +318 -0
  47. plumed/_lib/include/plumed/asmjit/operand.h +1599 -0
  48. plumed/_lib/include/plumed/asmjit/osutils.h +207 -0
  49. plumed/_lib/include/plumed/asmjit/regalloc_p.h +597 -0
  50. plumed/_lib/include/plumed/asmjit/runtime.h +227 -0
  51. plumed/_lib/include/plumed/asmjit/simdtypes.h +1104 -0
  52. plumed/_lib/include/plumed/asmjit/utils.h +1387 -0
  53. plumed/_lib/include/plumed/asmjit/vmem.h +183 -0
  54. plumed/_lib/include/plumed/asmjit/x86.h +45 -0
  55. plumed/_lib/include/plumed/asmjit/x86assembler.h +125 -0
  56. plumed/_lib/include/plumed/asmjit/x86builder.h +117 -0
  57. plumed/_lib/include/plumed/asmjit/x86compiler.h +322 -0
  58. plumed/_lib/include/plumed/asmjit/x86emitter.h +5149 -0
  59. plumed/_lib/include/plumed/asmjit/x86globals.h +535 -0
  60. plumed/_lib/include/plumed/asmjit/x86inst.h +2547 -0
  61. plumed/_lib/include/plumed/asmjit/x86instimpl_p.h +74 -0
  62. plumed/_lib/include/plumed/asmjit/x86internal_p.h +108 -0
  63. plumed/_lib/include/plumed/asmjit/x86logging_p.h +92 -0
  64. plumed/_lib/include/plumed/asmjit/x86misc.h +417 -0
  65. plumed/_lib/include/plumed/asmjit/x86operand.h +1133 -0
  66. plumed/_lib/include/plumed/asmjit/x86regalloc_p.h +734 -0
  67. plumed/_lib/include/plumed/asmjit/zone.h +1157 -0
  68. plumed/_lib/include/plumed/bias/Bias.h +82 -0
  69. plumed/_lib/include/plumed/bias/ReweightBase.h +58 -0
  70. plumed/_lib/include/plumed/blas/blas.h +253 -0
  71. plumed/_lib/include/plumed/blas/def_external.h +61 -0
  72. plumed/_lib/include/plumed/blas/def_internal.h +97 -0
  73. plumed/_lib/include/plumed/blas/real.h +49 -0
  74. plumed/_lib/include/plumed/cltools/CLTool.h +32 -0
  75. plumed/_lib/include/plumed/clusters/ClusteringBase.h +70 -0
  76. plumed/_lib/include/plumed/colvar/Colvar.h +32 -0
  77. plumed/_lib/include/plumed/colvar/ColvarInput.h +68 -0
  78. plumed/_lib/include/plumed/colvar/ColvarShortcut.h +81 -0
  79. plumed/_lib/include/plumed/colvar/CoordinationBase.h +52 -0
  80. plumed/_lib/include/plumed/colvar/MultiColvarTemplate.h +333 -0
  81. plumed/_lib/include/plumed/colvar/PathMSDBase.h +101 -0
  82. plumed/_lib/include/plumed/colvar/RMSDVector.h +78 -0
  83. plumed/_lib/include/plumed/config/Config.h +118 -0
  84. plumed/_lib/include/plumed/config/version.h +9 -0
  85. plumed/_lib/include/plumed/contour/ContourFindingObject.h +87 -0
  86. plumed/_lib/include/plumed/contour/DistanceFromContourBase.h +82 -0
  87. plumed/_lib/include/plumed/contour/FindContour.h +67 -0
  88. plumed/_lib/include/plumed/core/Action.h +540 -0
  89. plumed/_lib/include/plumed/core/ActionAnyorder.h +48 -0
  90. plumed/_lib/include/plumed/core/ActionAtomistic.h +343 -0
  91. plumed/_lib/include/plumed/core/ActionForInterface.h +99 -0
  92. plumed/_lib/include/plumed/core/ActionPilot.h +57 -0
  93. plumed/_lib/include/plumed/core/ActionRegister.h +124 -0
  94. plumed/_lib/include/plumed/core/ActionSet.h +163 -0
  95. plumed/_lib/include/plumed/core/ActionSetup.h +48 -0
  96. plumed/_lib/include/plumed/core/ActionShortcut.h +73 -0
  97. plumed/_lib/include/plumed/core/ActionToGetData.h +59 -0
  98. plumed/_lib/include/plumed/core/ActionToPutData.h +101 -0
  99. plumed/_lib/include/plumed/core/ActionWithArguments.h +140 -0
  100. plumed/_lib/include/plumed/core/ActionWithMatrix.h +87 -0
  101. plumed/_lib/include/plumed/core/ActionWithValue.h +258 -0
  102. plumed/_lib/include/plumed/core/ActionWithVector.h +94 -0
  103. plumed/_lib/include/plumed/core/ActionWithVirtualAtom.h +123 -0
  104. plumed/_lib/include/plumed/core/CLTool.h +177 -0
  105. plumed/_lib/include/plumed/core/CLToolMain.h +102 -0
  106. plumed/_lib/include/plumed/core/CLToolRegister.h +108 -0
  107. plumed/_lib/include/plumed/core/Colvar.h +115 -0
  108. plumed/_lib/include/plumed/core/DataPassingObject.h +94 -0
  109. plumed/_lib/include/plumed/core/DataPassingTools.h +54 -0
  110. plumed/_lib/include/plumed/core/DomainDecomposition.h +120 -0
  111. plumed/_lib/include/plumed/core/ExchangePatterns.h +47 -0
  112. plumed/_lib/include/plumed/core/FlexibleBin.h +63 -0
  113. plumed/_lib/include/plumed/core/GREX.h +61 -0
  114. plumed/_lib/include/plumed/core/GenericMolInfo.h +89 -0
  115. plumed/_lib/include/plumed/core/Group.h +41 -0
  116. plumed/_lib/include/plumed/core/ModuleMap.h +30 -0
  117. plumed/_lib/include/plumed/core/ParallelTaskManager.h +1023 -0
  118. plumed/_lib/include/plumed/core/PbcAction.h +61 -0
  119. plumed/_lib/include/plumed/core/PlumedMain.h +632 -0
  120. plumed/_lib/include/plumed/core/PlumedMainInitializer.h +118 -0
  121. plumed/_lib/include/plumed/core/RegisterBase.h +340 -0
  122. plumed/_lib/include/plumed/core/TargetDist.h +48 -0
  123. plumed/_lib/include/plumed/core/Value.h +547 -0
  124. plumed/_lib/include/plumed/core/WithCmd.h +93 -0
  125. plumed/_lib/include/plumed/dimred/SMACOF.h +55 -0
  126. plumed/_lib/include/plumed/drr/DRR.h +383 -0
  127. plumed/_lib/include/plumed/drr/colvar_UIestimator.h +777 -0
  128. plumed/_lib/include/plumed/fisst/legendre_rule_fast.h +44 -0
  129. plumed/_lib/include/plumed/function/Custom.h +54 -0
  130. plumed/_lib/include/plumed/function/Function.h +85 -0
  131. plumed/_lib/include/plumed/function/FunctionOfMatrix.h +368 -0
  132. plumed/_lib/include/plumed/function/FunctionOfScalar.h +135 -0
  133. plumed/_lib/include/plumed/function/FunctionOfVector.h +296 -0
  134. plumed/_lib/include/plumed/function/FunctionSetup.h +180 -0
  135. plumed/_lib/include/plumed/function/FunctionShortcut.h +130 -0
  136. plumed/_lib/include/plumed/function/FunctionWithSingleArgument.h +165 -0
  137. plumed/_lib/include/plumed/gridtools/ActionWithGrid.h +43 -0
  138. plumed/_lib/include/plumed/gridtools/EvaluateGridFunction.h +99 -0
  139. plumed/_lib/include/plumed/gridtools/FunctionOfGrid.h +295 -0
  140. plumed/_lib/include/plumed/gridtools/GridCoordinatesObject.h +179 -0
  141. plumed/_lib/include/plumed/gridtools/GridSearch.h +135 -0
  142. plumed/_lib/include/plumed/gridtools/Interpolator.h +45 -0
  143. plumed/_lib/include/plumed/gridtools/KDE.h +455 -0
  144. plumed/_lib/include/plumed/gridtools/RDF.h +40 -0
  145. plumed/_lib/include/plumed/gridtools/SumOfKernels.h +219 -0
  146. plumed/_lib/include/plumed/isdb/MetainferenceBase.h +398 -0
  147. plumed/_lib/include/plumed/lapack/def_external.h +207 -0
  148. plumed/_lib/include/plumed/lapack/def_internal.h +388 -0
  149. plumed/_lib/include/plumed/lapack/lapack.h +899 -0
  150. plumed/_lib/include/plumed/lapack/lapack_limits.h +79 -0
  151. plumed/_lib/include/plumed/lapack/real.h +50 -0
  152. plumed/_lib/include/plumed/lepton/CompiledExpression.h +164 -0
  153. plumed/_lib/include/plumed/lepton/CustomFunction.h +143 -0
  154. plumed/_lib/include/plumed/lepton/Exception.h +93 -0
  155. plumed/_lib/include/plumed/lepton/ExpressionProgram.h +137 -0
  156. plumed/_lib/include/plumed/lepton/ExpressionTreeNode.h +145 -0
  157. plumed/_lib/include/plumed/lepton/Lepton.h +85 -0
  158. plumed/_lib/include/plumed/lepton/MSVC_erfc.h +123 -0
  159. plumed/_lib/include/plumed/lepton/Operation.h +1302 -0
  160. plumed/_lib/include/plumed/lepton/ParsedExpression.h +165 -0
  161. plumed/_lib/include/plumed/lepton/Parser.h +111 -0
  162. plumed/_lib/include/plumed/lepton/windowsIncludes.h +73 -0
  163. plumed/_lib/include/plumed/mapping/Path.h +44 -0
  164. plumed/_lib/include/plumed/mapping/PathProjectionCalculator.h +57 -0
  165. plumed/_lib/include/plumed/matrixtools/MatrixOperationBase.h +54 -0
  166. plumed/_lib/include/plumed/matrixtools/MatrixTimesMatrix.h +309 -0
  167. plumed/_lib/include/plumed/matrixtools/MatrixTimesVectorBase.h +365 -0
  168. plumed/_lib/include/plumed/matrixtools/OuterProduct.h +238 -0
  169. plumed/_lib/include/plumed/maze/Core.h +65 -0
  170. plumed/_lib/include/plumed/maze/Loss.h +86 -0
  171. plumed/_lib/include/plumed/maze/Member.h +66 -0
  172. plumed/_lib/include/plumed/maze/Memetic.h +799 -0
  173. plumed/_lib/include/plumed/maze/Optimizer.h +357 -0
  174. plumed/_lib/include/plumed/maze/Random_MT.h +156 -0
  175. plumed/_lib/include/plumed/maze/Tools.h +183 -0
  176. plumed/_lib/include/plumed/metatomic/vesin.h +188 -0
  177. plumed/_lib/include/plumed/molfile/Gromacs.h +2013 -0
  178. plumed/_lib/include/plumed/molfile/endianswap.h +217 -0
  179. plumed/_lib/include/plumed/molfile/fastio.h +683 -0
  180. plumed/_lib/include/plumed/molfile/largefiles.h +78 -0
  181. plumed/_lib/include/plumed/molfile/libmolfile_plugin.h +77 -0
  182. plumed/_lib/include/plumed/molfile/molfile_plugin.h +1034 -0
  183. plumed/_lib/include/plumed/molfile/periodic_table.h +248 -0
  184. plumed/_lib/include/plumed/molfile/readpdb.h +447 -0
  185. plumed/_lib/include/plumed/molfile/vmdplugin.h +236 -0
  186. plumed/_lib/include/plumed/multicolvar/MultiColvarShortcuts.h +45 -0
  187. plumed/_lib/include/plumed/opes/ExpansionCVs.h +79 -0
  188. plumed/_lib/include/plumed/sasa/Sasa.h +32 -0
  189. plumed/_lib/include/plumed/secondarystructure/SecondaryStructureBase.h +372 -0
  190. plumed/_lib/include/plumed/setup/ActionSetup.h +25 -0
  191. plumed/_lib/include/plumed/small_vector/small_vector.h +6114 -0
  192. plumed/_lib/include/plumed/symfunc/CoordinationNumbers.h +41 -0
  193. plumed/_lib/include/plumed/tools/Angle.h +52 -0
  194. plumed/_lib/include/plumed/tools/AtomDistribution.h +138 -0
  195. plumed/_lib/include/plumed/tools/AtomNumber.h +152 -0
  196. plumed/_lib/include/plumed/tools/BiasRepresentation.h +106 -0
  197. plumed/_lib/include/plumed/tools/BitmaskEnum.h +167 -0
  198. plumed/_lib/include/plumed/tools/Brent1DRootSearch.h +159 -0
  199. plumed/_lib/include/plumed/tools/CheckInRange.h +44 -0
  200. plumed/_lib/include/plumed/tools/Citations.h +74 -0
  201. plumed/_lib/include/plumed/tools/ColvarOutput.h +118 -0
  202. plumed/_lib/include/plumed/tools/Communicator.h +316 -0
  203. plumed/_lib/include/plumed/tools/ConjugateGradient.h +80 -0
  204. plumed/_lib/include/plumed/tools/DLLoader.h +79 -0
  205. plumed/_lib/include/plumed/tools/ERMSD.h +73 -0
  206. plumed/_lib/include/plumed/tools/Exception.h +406 -0
  207. plumed/_lib/include/plumed/tools/File.h +28 -0
  208. plumed/_lib/include/plumed/tools/FileBase.h +153 -0
  209. plumed/_lib/include/plumed/tools/FileTools.h +37 -0
  210. plumed/_lib/include/plumed/tools/ForwardDecl.h +54 -0
  211. plumed/_lib/include/plumed/tools/Grid.h +638 -0
  212. plumed/_lib/include/plumed/tools/HistogramBead.h +136 -0
  213. plumed/_lib/include/plumed/tools/IFile.h +117 -0
  214. plumed/_lib/include/plumed/tools/KernelFunctions.h +113 -0
  215. plumed/_lib/include/plumed/tools/Keywords.h +380 -0
  216. plumed/_lib/include/plumed/tools/LatticeReduction.h +66 -0
  217. plumed/_lib/include/plumed/tools/LeptonCall.h +64 -0
  218. plumed/_lib/include/plumed/tools/LinkCells.h +126 -0
  219. plumed/_lib/include/plumed/tools/Log.h +41 -0
  220. plumed/_lib/include/plumed/tools/LoopUnroller.h +163 -0
  221. plumed/_lib/include/plumed/tools/Matrix.h +721 -0
  222. plumed/_lib/include/plumed/tools/MatrixSquareBracketsAccess.h +138 -0
  223. plumed/_lib/include/plumed/tools/MergeVectorTools.h +153 -0
  224. plumed/_lib/include/plumed/tools/Minimise1DBrent.h +244 -0
  225. plumed/_lib/include/plumed/tools/MinimiseBase.h +120 -0
  226. plumed/_lib/include/plumed/tools/MolDataClass.h +51 -0
  227. plumed/_lib/include/plumed/tools/NeighborList.h +112 -0
  228. plumed/_lib/include/plumed/tools/OFile.h +286 -0
  229. plumed/_lib/include/plumed/tools/OpenACC.h +180 -0
  230. plumed/_lib/include/plumed/tools/OpenMP.h +75 -0
  231. plumed/_lib/include/plumed/tools/PDB.h +154 -0
  232. plumed/_lib/include/plumed/tools/Pbc.h +139 -0
  233. plumed/_lib/include/plumed/tools/PlumedHandle.h +105 -0
  234. plumed/_lib/include/plumed/tools/RMSD.h +493 -0
  235. plumed/_lib/include/plumed/tools/Random.h +80 -0
  236. plumed/_lib/include/plumed/tools/RootFindingBase.h +79 -0
  237. plumed/_lib/include/plumed/tools/Stopwatch.h +475 -0
  238. plumed/_lib/include/plumed/tools/Subprocess.h +142 -0
  239. plumed/_lib/include/plumed/tools/SwitchingFunction.h +208 -0
  240. plumed/_lib/include/plumed/tools/Tensor.h +724 -0
  241. plumed/_lib/include/plumed/tools/TokenizedLine.h +123 -0
  242. plumed/_lib/include/plumed/tools/Tools.h +638 -0
  243. plumed/_lib/include/plumed/tools/Torsion.h +55 -0
  244. plumed/_lib/include/plumed/tools/TrajectoryParser.h +118 -0
  245. plumed/_lib/include/plumed/tools/Tree.h +61 -0
  246. plumed/_lib/include/plumed/tools/TypesafePtr.h +463 -0
  247. plumed/_lib/include/plumed/tools/Units.h +167 -0
  248. plumed/_lib/include/plumed/tools/Vector.h +433 -0
  249. plumed/_lib/include/plumed/tools/View.h +296 -0
  250. plumed/_lib/include/plumed/tools/View2D.h +100 -0
  251. plumed/_lib/include/plumed/tools/h36.h +39 -0
  252. plumed/_lib/include/plumed/vatom/ActionWithVirtualAtom.h +32 -0
  253. plumed/_lib/include/plumed/ves/BasisFunctions.h +380 -0
  254. plumed/_lib/include/plumed/ves/CoeffsBase.h +310 -0
  255. plumed/_lib/include/plumed/ves/CoeffsMatrix.h +220 -0
  256. plumed/_lib/include/plumed/ves/CoeffsVector.h +251 -0
  257. plumed/_lib/include/plumed/ves/FermiSwitchingFunction.h +74 -0
  258. plumed/_lib/include/plumed/ves/GridIntegrationWeights.h +50 -0
  259. plumed/_lib/include/plumed/ves/GridLinearInterpolation.h +81 -0
  260. plumed/_lib/include/plumed/ves/GridProjWeights.h +61 -0
  261. plumed/_lib/include/plumed/ves/LinearBasisSetExpansion.h +303 -0
  262. plumed/_lib/include/plumed/ves/Optimizer.h +444 -0
  263. plumed/_lib/include/plumed/ves/TargetDistModifer.h +53 -0
  264. plumed/_lib/include/plumed/ves/TargetDistribution.h +266 -0
  265. plumed/_lib/include/plumed/ves/VesBias.h +545 -0
  266. plumed/_lib/include/plumed/ves/VesTools.h +142 -0
  267. plumed/_lib/include/plumed/ves/WaveletGrid.h +75 -0
  268. plumed/_lib/include/plumed/volumes/ActionVolume.h +268 -0
  269. plumed/_lib/include/plumed/volumes/VolumeShortcut.h +147 -0
  270. plumed/_lib/include/plumed/wrapper/Plumed.h +5025 -0
  271. plumed/_lib/include/plumed/xdrfile/xdrfile.h +663 -0
  272. plumed/_lib/include/plumed/xdrfile/xdrfile_trr.h +89 -0
  273. plumed/_lib/include/plumed/xdrfile/xdrfile_xtc.h +90 -0
  274. plumed/_lib/lib/PythonCVInterface.so +0 -0
  275. plumed/_lib/lib/libplumed.a +0 -0
  276. plumed/_lib/lib/libplumed.so +0 -0
  277. plumed/_lib/lib/libplumedKernel.so +0 -0
  278. plumed/_lib/lib/libplumedWrapper.a +0 -0
  279. plumed/_lib/lib/pkgconfig/plumed.pc +13 -0
  280. plumed/_lib/lib/pkgconfig/plumedInternals.pc +13 -0
  281. plumed/_lib/lib/pkgconfig/plumedWrapper.pc +13 -0
  282. plumed/_lib/lib/plumed/fortran/plumed.f90 +879 -0
  283. plumed/_lib/lib/plumed/fortran/plumed_f08.f90 +2625 -0
  284. plumed/_lib/lib/plumed/modulefile +69 -0
  285. plumed/_lib/lib/plumed/patches/gromacs-2022.5.config +43 -0
  286. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/CMakeLists.txt +543 -0
  287. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/CMakeLists.txt.preplumed +540 -0
  288. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.cpp +1628 -0
  289. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.cpp.preplumed +1590 -0
  290. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.h +103 -0
  291. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.h.preplumed +99 -0
  292. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/sim_util.cpp +2527 -0
  293. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/sim_util.cpp.preplumed +2513 -0
  294. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp +208 -0
  295. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp.preplumed +175 -0
  296. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.h +408 -0
  297. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.h.preplumed +394 -0
  298. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/md.cpp +2348 -0
  299. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/md.cpp.preplumed +2091 -0
  300. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/minimize.cpp +3573 -0
  301. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/minimize.cpp.preplumed +3495 -0
  302. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.cpp +1506 -0
  303. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.cpp.preplumed +1402 -0
  304. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.h +114 -0
  305. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.h.preplumed +106 -0
  306. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/rerun.cpp +997 -0
  307. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/rerun.cpp.preplumed +906 -0
  308. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/runner.cpp +2780 -0
  309. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/runner.cpp.preplumed +2738 -0
  310. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp +224 -0
  311. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp.preplumed +222 -0
  312. plumed/_lib/lib/plumed/patches/gromacs-2023.5.config +43 -0
  313. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/CMakeLists.txt +549 -0
  314. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/CMakeLists.txt.preplumed +546 -0
  315. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.cpp +1632 -0
  316. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.cpp.preplumed +1594 -0
  317. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.h +104 -0
  318. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.h.preplumed +100 -0
  319. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/sim_util.cpp +2624 -0
  320. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/sim_util.cpp.preplumed +2610 -0
  321. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp +208 -0
  322. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp.preplumed +175 -0
  323. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.h +409 -0
  324. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.h.preplumed +395 -0
  325. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/md.cpp +2419 -0
  326. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/md.cpp.preplumed +2164 -0
  327. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/minimize.cpp +3546 -0
  328. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/minimize.cpp.preplumed +3468 -0
  329. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.cpp +1513 -0
  330. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.cpp.preplumed +1409 -0
  331. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.h +114 -0
  332. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.h.preplumed +106 -0
  333. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/rerun.cpp +991 -0
  334. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/rerun.cpp.preplumed +900 -0
  335. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/runner.cpp +2895 -0
  336. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/runner.cpp.preplumed +2849 -0
  337. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp +224 -0
  338. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp.preplumed +222 -0
  339. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/decidegpuusage.cpp +886 -0
  340. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/decidegpuusage.cpp.preplumed +880 -0
  341. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h +347 -0
  342. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h.preplumed +345 -0
  343. plumed/_lib/lib/plumed/patches/gromacs-2024.3.config +43 -0
  344. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/CMakeLists.txt +575 -0
  345. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/CMakeLists.txt.preplumed +572 -0
  346. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.cpp +1632 -0
  347. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.cpp.preplumed +1594 -0
  348. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.h +104 -0
  349. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.h.preplumed +100 -0
  350. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/sim_util.cpp +2564 -0
  351. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/sim_util.cpp.preplumed +2550 -0
  352. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.cpp +208 -0
  353. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.cpp.preplumed +175 -0
  354. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.h +410 -0
  355. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.h.preplumed +396 -0
  356. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/md.cpp +2435 -0
  357. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/md.cpp.preplumed +2187 -0
  358. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/minimize.cpp +3592 -0
  359. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/minimize.cpp.preplumed +3514 -0
  360. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.cpp +1513 -0
  361. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.cpp.preplumed +1409 -0
  362. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.h +114 -0
  363. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.h.preplumed +106 -0
  364. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/rerun.cpp +958 -0
  365. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/rerun.cpp.preplumed +929 -0
  366. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/runner.cpp +2987 -0
  367. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/runner.cpp.preplumed +2941 -0
  368. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp +224 -0
  369. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp.preplumed +222 -0
  370. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/decidegpuusage.cpp +904 -0
  371. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/decidegpuusage.cpp.preplumed +898 -0
  372. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h +353 -0
  373. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h.preplumed +351 -0
  374. plumed/_lib/lib/plumed/patches/gromacs-2025.0.config +39 -0
  375. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/cmake/gmxManagePlumed.cmake +82 -0
  376. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/cmake/gmxManagePlumed.cmake.preplumed +82 -0
  377. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedMDModule.cpp +162 -0
  378. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedMDModule.cpp.preplumed +154 -0
  379. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.cpp +107 -0
  380. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.cpp.preplumed +99 -0
  381. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.h +120 -0
  382. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.h.preplumed +111 -0
  383. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.cpp +215 -0
  384. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.cpp.preplumed +197 -0
  385. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.h +87 -0
  386. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.h.preplumed +86 -0
  387. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrun/runner.cpp +2971 -0
  388. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrun/runner.cpp.preplumed +2970 -0
  389. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrunutility/mdmodulesnotifiers.h +430 -0
  390. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrunutility/mdmodulesnotifiers.h.preplumed +429 -0
  391. plumed/_lib/lib/plumed/patches/namd-2.12.config +30 -0
  392. plumed/_lib/lib/plumed/patches/namd-2.12.diff +267 -0
  393. plumed/_lib/lib/plumed/patches/namd-2.13.config +30 -0
  394. plumed/_lib/lib/plumed/patches/namd-2.13.diff +267 -0
  395. plumed/_lib/lib/plumed/patches/namd-2.14.config +30 -0
  396. plumed/_lib/lib/plumed/patches/namd-2.14.diff +268 -0
  397. plumed/_lib/lib/plumed/patches/patch.sh +500 -0
  398. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.config +25 -0
  399. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/forces.f90 +368 -0
  400. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/forces.f90.preplumed +366 -0
  401. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_forces.f90 +71 -0
  402. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_forces.f90.preplumed +24 -0
  403. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_initialization.f90 +62 -0
  404. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
  405. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/pwscf.f90 +189 -0
  406. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/pwscf.f90.preplumed +185 -0
  407. plumed/_lib/lib/plumed/patches/qespresso-6.2.config +26 -0
  408. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/forces.f90 +422 -0
  409. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/forces.f90.preplumed +420 -0
  410. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_ext_forces.f90 +70 -0
  411. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_ext_forces.f90.preplumed +23 -0
  412. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_initialization.f90 +62 -0
  413. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
  414. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/run_pwscf.f90 +233 -0
  415. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/run_pwscf.f90.preplumed +230 -0
  416. plumed/_lib/lib/plumed/patches/qespresso-7.0.config +28 -0
  417. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/Modules/Makefile +175 -0
  418. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/Modules/Makefile.preplumed +171 -0
  419. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/forces.f90 +486 -0
  420. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/forces.f90.preplumed +484 -0
  421. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_ext_forces.f90 +74 -0
  422. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_ext_forces.f90.preplumed +23 -0
  423. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_initialization.f90 +64 -0
  424. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
  425. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/run_pwscf.f90 +532 -0
  426. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/run_pwscf.f90.preplumed +518 -0
  427. plumed/_lib/lib/plumed/patches/qespresso-7.2.config +28 -0
  428. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/Modules/Makefile +249 -0
  429. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/Modules/Makefile.preplumed +244 -0
  430. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/forces.f90 +532 -0
  431. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/forces.f90.preplumed +535 -0
  432. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_ext_forces.f90 +74 -0
  433. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_ext_forces.f90.preplumed +23 -0
  434. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_initialization.f90 +64 -0
  435. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
  436. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/run_pwscf.f90 +569 -0
  437. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/run_pwscf.f90.preplumed +560 -0
  438. plumed/_lib/lib/plumed/plumed-config +9 -0
  439. plumed/_lib/lib/plumed/plumed-mklib +9 -0
  440. plumed/_lib/lib/plumed/plumed-newcv +9 -0
  441. plumed/_lib/lib/plumed/plumed-partial_tempering +9 -0
  442. plumed/_lib/lib/plumed/plumed-patch +9 -0
  443. plumed/_lib/lib/plumed/plumed-runtime +0 -0
  444. plumed/_lib/lib/plumed/plumed-selector +9 -0
  445. plumed/_lib/lib/plumed/plumed-vim2html +9 -0
  446. plumed/_lib/lib/plumed/scripts/config.sh +126 -0
  447. plumed/_lib/lib/plumed/scripts/mklib.sh +175 -0
  448. plumed/_lib/lib/plumed/scripts/newcv.sh +26 -0
  449. plumed/_lib/lib/plumed/scripts/partial_tempering.sh +319 -0
  450. plumed/_lib/lib/plumed/scripts/patch.sh +4 -0
  451. plumed/_lib/lib/plumed/scripts/selector.sh +234 -0
  452. plumed/_lib/lib/plumed/scripts/vim2html.sh +190 -0
  453. plumed/_lib/lib/plumed/src/colvar/Template.cpp +116 -0
  454. plumed/_lib/lib/plumed/src/config/compile_options.sh +3 -0
  455. plumed/_lib/lib/plumed/src/config/config.txt +179 -0
  456. plumed/_lib/lib/plumed/src/lib/Plumed.cmake +8 -0
  457. plumed/_lib/lib/plumed/src/lib/Plumed.cmake.runtime +5 -0
  458. plumed/_lib/lib/plumed/src/lib/Plumed.cmake.shared +5 -0
  459. plumed/_lib/lib/plumed/src/lib/Plumed.cmake.static +5 -0
  460. plumed/_lib/lib/plumed/src/lib/Plumed.inc +8 -0
  461. plumed/_lib/lib/plumed/src/lib/Plumed.inc.runtime +5 -0
  462. plumed/_lib/lib/plumed/src/lib/Plumed.inc.shared +5 -0
  463. plumed/_lib/lib/plumed/src/lib/Plumed.inc.static +5 -0
  464. plumed/_lib/lib/plumed/vim/scripts.vim +6 -0
  465. plumed/_plumed_core.cpython-311-aarch64-linux-gnu.so +0 -0
  466. plumed/_plumed_core.cpython-312-aarch64-linux-gnu.so +0 -0
  467. plumed/_plumed_core.cpython-313-aarch64-linux-gnu.so +0 -0
  468. plumed/_plumed_core.cpython-314-aarch64-linux-gnu.so +0 -0
  469. plumed/_plumed_core.cpython-314t-aarch64-linux-gnu.so +0 -0
  470. plumedCommunications.cpython-311-aarch64-linux-gnu.so +0 -0
  471. plumedCommunications.cpython-312-aarch64-linux-gnu.so +0 -0
  472. plumedCommunications.cpython-313-aarch64-linux-gnu.so +0 -0
  473. plumedCommunications.cpython-314-aarch64-linux-gnu.so +0 -0
  474. plumedCommunications.cpython-314t-aarch64-linux-gnu.so +0 -0
  475. plumedCommunications.pyi +431 -0
@@ -0,0 +1,899 @@
1
+ /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2
+ These files are semi-automatic translations by f2c from the original netlib LAPACK library.
3
+ The source has been modified to (mostly) use modern C formatting, and to get rid of
4
+ compiler warnings. Any errors in doing this should be blamed on the GROMACS developers, and
5
+ not the reference LAPACK implementation.
6
+
7
+ The reference LAPACK implementation is available from http://www.netlib.org/lapack
8
+
9
+ LAPACK does not come with a formal named "license", but a general statement saying:
10
+
11
+ "The reference LAPACK is a freely-available software package. It is available from netlib
12
+ via anonymous ftp and the World Wide Web. Thus, it can be included in commercial software
13
+ packages (and has been). We only ask that proper credit be given to the authors."
14
+
15
+ While the rest of GROMACS is LGPL, we think it's only fair to give you the same rights to
16
+ our modified LAPACK files as the original netlib versions, so do what you want with them.
17
+
18
+ However, be warned that we have only tested that they to the right thing in the cases used
19
+ in GROMACS (primarily full & sparse matrix diagonalization), so in most cases it is a much
20
+ better idea to use the full reference implementation.
21
+
22
+ Erik Lindahl, 2008-10-07.
23
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
24
+ #ifndef __PLUMED_lapack_lapack_h
25
+ #define __PLUMED_lapack_lapack_h
26
+ /*
27
+ * This file is part of the GROMACS molecular simulation package.
28
+ *
29
+ * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
30
+ * Copyright (c) 2001-2008, The GROMACS development team.
31
+ * Copyright (c) 2012,2013,2014, by the GROMACS development team, led by
32
+ * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
33
+ * and including many others, as listed in the AUTHORS file in the
34
+ * top-level source directory and at http://www.gromacs.org.
35
+ *
36
+ * GROMACS is free software; you can redistribute it and/or
37
+ * modify it under the terms of the GNU Lesser General Public License
38
+ * as published by the Free Software Foundation; either version 2.1
39
+ * of the License, or (at your option) any later version.
40
+ *
41
+ * GROMACS is distributed in the hope that it will be useful,
42
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
43
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
44
+ * Lesser General Public License for more details.
45
+ *
46
+ * You should have received a copy of the GNU Lesser General Public
47
+ * License along with GROMACS; if not, see
48
+ * http://www.gnu.org/licenses, or write to the Free Software Foundation,
49
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
50
+ *
51
+ * If you want to redistribute modifications to GROMACS, please
52
+ * consider that scientific software is very special. Version
53
+ * control is crucial - bugs must be traceable. We will be happy to
54
+ * consider code for inclusion in the official distribution, but
55
+ * derived work must not be called official GROMACS. Details are found
56
+ * in the README & COPYING files - if they are missing, get the
57
+ * official version at http://www.gromacs.org.
58
+ *
59
+ * To help us fund GROMACS development, we humbly ask that you cite
60
+ * the research papers on the package. Check out http://www.gromacs.org.
61
+ */
62
+ /*! \internal \file
63
+ * \brief
64
+ * Header definitions for the standard LAPACK library.
65
+ *
66
+ * This is the subset of LAPACK routines used for the
67
+ * linear algebra operations in Gromacs. Most of the execution time
68
+ * will be spent in the BLAS routines, which you hopefully have an
69
+ * optimized version of. Gromacs includes reference implementations
70
+ * of both BLAS and LAPACK so it compiles everywhere, but you should
71
+ * really try to find a vendor or otherwise optimized version at least
72
+ * of BLAS for better performance.
73
+ *
74
+ * Do NOT use this code for other purposes - we only provide this as a
75
+ * simple fallback/reference implementation when no optimized BLAS
76
+ * is present. If you need an implementation for your own code
77
+ * there are several much faster versions out there.
78
+ *
79
+ * All routines are compatible with the LAPACK/BLAS reference implementations,
80
+ * meaning they assume fortran-style matrix row/column organization.
81
+ *
82
+ * There is plenty of documentation for these routines available
83
+ * at http://www.netlib.org/lapack , so there is no point in repeating
84
+ * it here.
85
+ */
86
+ #ifndef GMX_LAPACK_H
87
+ #define GMX_LAPACK_H
88
+
89
+ /*! \cond */
90
+
91
+
92
+ /* These are not required by this file, but by the internal LAPACK
93
+ * implementation. In principle, they could be included in each file
94
+ * that requires them, but this is simpler. Since the header is internal
95
+ * to the linearyalgebra/ module, the added complexity may not be worth it. */
96
+ #include "real.h"
97
+
98
+ #ifndef __PLUMED_LAPACK_RETURNS_FLOAT
99
+ #define __PLUMED_LAPACK_RETURNS_FLOAT float
100
+ #endif
101
+ #if ! defined(__PLUMED_HAS_EXTERNAL_LAPACK)
102
+ #include "def_internal.h"
103
+ namespace PLMD{
104
+ namespace lapack{
105
+ #else
106
+ #include "def_external.h"
107
+ extern "C"{
108
+ #endif
109
+ #if 0
110
+ }
111
+ #endif
112
+ /* Double precision */
113
+
114
+ void
115
+ PLUMED_BLAS_F77_FUNC(dbdsdc, DBDSDC) (const char *uplo, const char *compq, int *n, double *d, double *e, double *u,
116
+ int *ldu, double *vt, int *ldvt, double *q, int *iq, double *work,
117
+ int *iwork, int *info);
118
+
119
+ void
120
+ PLUMED_BLAS_F77_FUNC(dgetf2, DGETF2) (int *m, int *n, double *a, int *lda, int *ipiv, int *info);
121
+
122
+ void
123
+ PLUMED_BLAS_F77_FUNC(dlamrg, DLAMRG) (int *n1, int *n2, double *a, int *dtrd1, int *dtrd2, int *index);
124
+
125
+ void
126
+ PLUMED_BLAS_F77_FUNC(dlarnv, DLARNV) (int *idist, int *iseed, int *n, double *x);
127
+
128
+ void
129
+ PLUMED_BLAS_F77_FUNC(dlasd0, DLASD0) (int *n, int *sqre, double *d, double *e, double *u,
130
+ int *ldu, double *vt, int *ldvt, int *smlsiz, int *iwork,
131
+ double *work, int *info);
132
+
133
+ void
134
+ PLUMED_BLAS_F77_FUNC(dlasda, DLASDA) (int *icompq, int *smlsiz, int *n, int *sqre, double *d, double *e,
135
+ double *u, int *ldu, double *vt, int *k, double *difl, double *difr,
136
+ double *z, double *poles, int *givptr, int *givcol, int *ldgcol,
137
+ int *perm, double *givnum, double *c, double *s,
138
+ double *work, int *iwork, int *info);
139
+
140
+ void
141
+ PLUMED_BLAS_F77_FUNC(dlasq6, DLASQ6) (int *i0, int *n0, double *z, int *pp, double *dmin, double *dmin1,
142
+ double *dmin2, double *dn, double *dnm1, double *dnm2);
143
+
144
+ void
145
+ PLUMED_BLAS_F77_FUNC(dorgl2, DORGL2) (int *m, int *n, int *k, double *a, int *lda,
146
+ double *tau, double *work, int *info);
147
+
148
+ void
149
+ PLUMED_BLAS_F77_FUNC(dbdsqr, DBDSQR) (const char *uplo, int *n, int *ncvt, int *nru, int *ncc, double *d,
150
+ double *e, double *vt, int *ldvt, double *u, int *ldu,
151
+ double *c, int *ldc, double *work, int *info);
152
+
153
+ void
154
+ PLUMED_BLAS_F77_FUNC(dgetrf, DGETRF) (int *m, int *n, double *a, int *lda, int *ipiv, int *info);
155
+
156
+ void
157
+ PLUMED_BLAS_F77_FUNC(dgetri, DGETRI) (int *n, double *a, int *lda, int *ipiv, double *work,
158
+ int *lwork, int *info);
159
+
160
+ void
161
+ PLUMED_BLAS_F77_FUNC(dgetrs, DGETRS) (const char *trans, int *n, int *nrhs, double *a, int *lda, int *ipiv,
162
+ double *b, int *ldb, int *info);
163
+
164
+ void
165
+ PLUMED_BLAS_F77_FUNC(dtrtri, DTRTRI) (const char *uplo, const char *diag, int *n, double *a, int *lda, int *info);
166
+
167
+ void
168
+ PLUMED_BLAS_F77_FUNC(dtrti2, DTRTI2) (const char *uplo, const char *diag, int *n, double *a, int *lda, int *info);
169
+
170
+ double
171
+ PLUMED_BLAS_F77_FUNC(dlange, DLANGE) (const char *norm, int *m, int *n, double *a, int *lda, double *work);
172
+
173
+ void
174
+ PLUMED_BLAS_F77_FUNC(dlarrbx, DLARRBX) (int *n, double *d, double *l, double *ld, double *lld, int *ifirst,
175
+ int *ilast, double *rtol1, double *rtol2, int *offset, double *w,
176
+ double *wgap, double *werr, double *work, int *iwork, int *info);
177
+
178
+ void
179
+ PLUMED_BLAS_F77_FUNC(dlasd1, DLASD1) (int *nl, int *nr, int *sqre, double *d, double *alpha, double *beta,
180
+ double *u, int *ldu, double *vt, int *ldvt, int *idxq, int *iwork,
181
+ double *work, int *info);
182
+
183
+ void
184
+ PLUMED_BLAS_F77_FUNC(dlasdq, DLASDQ) (const char *uplo, int *sqre, int *n, int *ncvt, int *nru, int *ncc,
185
+ double *d, double *e, double *vt, int *ldvt, double *u, int *ldu,
186
+ double *c, int *ldc, double *work, int *info);
187
+
188
+ void
189
+ PLUMED_BLAS_F77_FUNC(dlasr, DLASR) (const char *side, const char *pivot, const char *direct, int *m, int *n, double *c,
190
+ double *s, double *a, int *lda);
191
+
192
+ void
193
+ PLUMED_BLAS_F77_FUNC(dorglq, DORGLQ) (int *m, int *n, int *k, double *a, int *lda,
194
+ double *tau, double *work, int *lwork, int *info);
195
+
196
+ void
197
+ PLUMED_BLAS_F77_FUNC(dormtr, DORMTR) (const char *side, const char *uplo, const char *trans, int *m, int *n, double *a,
198
+ int *lda, double *tau, double *c, int *ldc,
199
+ double *work, int *lwork, int *info);
200
+
201
+ void
202
+ PLUMED_BLAS_F77_FUNC(dgebd2, DGEBD2) (int *m, int *n, double *a, int *lda, double *d, double *e,
203
+ double *tauq, double *taup, double *work, int *info);
204
+
205
+ void
206
+ PLUMED_BLAS_F77_FUNC(dlabrd, DLABRD) (int *m, int *n, int *nb, double *a, int *lda, double *d,
207
+ double *e, double *tauq, double *taup, double *x,
208
+ int *ldx, double *y, int *ldy);
209
+
210
+ double
211
+ PLUMED_BLAS_F77_FUNC(dlanst, DLANST) (const char *norm, int *n, double *d, double *e);
212
+
213
+ double
214
+ PLUMED_BLAS_F77_FUNC(dlansy, DLANSY) (const char *norm, const char *uplo, int *n, double *a, int *lda, double *work);
215
+
216
+ void
217
+ PLUMED_BLAS_F77_FUNC(dlarrex, DLARREX) (const char *range, int *n, double *vl, double *vu, int *il, int *iu,
218
+ double *d, double *e, double *tol, int *nsplit,
219
+ int *isplit, int *m, double *w, int *iblock, int *indexw,
220
+ double *gersch, double *work, int *iwork, int *info);
221
+
222
+ void
223
+ PLUMED_BLAS_F77_FUNC(dlasd2, DLASD2) (int *nl, int *nr, int *sqre, int *k, double *d, double *z,
224
+ double *alpha, double *beta, double *u, int *ldu, double *vt,
225
+ int *ldvt, double *dsigma, double *u2, int *ldu2, double *vt2,
226
+ int *ldvt2, int *idxp, int *idx, int *idxc,
227
+ int *idxq, int *coltyp, int *info);
228
+
229
+ void
230
+ PLUMED_BLAS_F77_FUNC(dlasdt, DLASDT) (int *n, int *lvl, int *nd, int *inode, int *ndiml,
231
+ int *ndimr, int *msub);
232
+
233
+ void
234
+ PLUMED_BLAS_F77_FUNC(dlasrt, DLASRT) (const char *id, int *n, double *d, int *info);
235
+
236
+ void
237
+ PLUMED_BLAS_F77_FUNC(dlasrt2, DLASRT2) (const char *id, int *n, double *d, int *key, int *info);
238
+
239
+ void
240
+ PLUMED_BLAS_F77_FUNC(ilasrt2, ILASRT2) (const char *id, int *n, int *d, int *key, int *info);
241
+
242
+ void
243
+ PLUMED_BLAS_F77_FUNC(dorgqr, DORGQR) (int *m, int *n, int *k, double *a, int *lda, double *tau,
244
+ double *work, int *lwork, int *info);
245
+
246
+ void
247
+ PLUMED_BLAS_F77_FUNC(dstebz, DSTEBZ) (const char *range, const char *order, int *n, double *vl, double *vu,
248
+ int *il, int *iu, double *abstol, double *d, double *e,
249
+ int *m, int *nsplit, double *w, int *iblock, int *isplit,
250
+ double *work, int *iwork, int *info);
251
+
252
+ void
253
+ PLUMED_BLAS_F77_FUNC(dsteqr, DSTEQR) (const char *compz, int *n, double *d__, double *e,
254
+ double *z__, int *ldz, double *work, int *info);
255
+
256
+ void
257
+ PLUMED_BLAS_F77_FUNC(dgebrd, DGEBRD) (int *m, int *n, double *a, int *lda, double *d, double *e,
258
+ double *tauq, double *taup, double *work, int *lwork, int *info);
259
+
260
+ void
261
+ PLUMED_BLAS_F77_FUNC(dlacpy, DLACPY) (const char *uplo, int *m, int *n, double *a, int *lda, double *b, int *ldb);
262
+
263
+ double
264
+ PLUMED_BLAS_F77_FUNC(dlapy2, DLAPY2) (double * x, double * y);
265
+
266
+
267
+ void
268
+ PLUMED_BLAS_F77_FUNC(dlarrfx, DLARRFX) (int *n, double *d, double *l, double *ld, double *lld, int *ifirst,
269
+ int *ilast, double *w, double *sigma, double *dplus, double *lplus,
270
+ double *work, int *info);
271
+
272
+ void
273
+ PLUMED_BLAS_F77_FUNC(dlasd3, DLASD3) (int *nl, int *nr, int *sqre, int *k, double *d, double *q, int *ldq,
274
+ double *dsigma, double *u, int *ldu, double *u2, int *ldu2,
275
+ double *vt, int *ldvt, double *vt2, int *ldvt2, int *idxc,
276
+ int *ctot, double *z, int *info);
277
+
278
+ void
279
+ PLUMED_BLAS_F77_FUNC(dlaset, DLASET) (const char *uplo, int *m, int *n, double *alpha,
280
+ double *beta, double *a, int *lda);
281
+
282
+ void
283
+ PLUMED_BLAS_F77_FUNC(dlassq, DLASSQ) (int *n, double *x, int *incx, double *scale, double *sumsq);
284
+
285
+ void
286
+ PLUMED_BLAS_F77_FUNC(dorm2l, DORM2L) (const char *side, const char *trans, int *m, int *n, int *k, double *a, int *lda,
287
+ double *tau, double *c, int *ldc, double *work, int *info);
288
+
289
+ void
290
+ PLUMED_BLAS_F77_FUNC(dstegr, DSTEGR) (const char *jobz, const char *range, int *n, double *d, double *e, double *vl,
291
+ double *vu, int *il, int *iu, double *abstol, int *m, double *w,
292
+ double *z, int *ldz, int *isuppz, double *work,
293
+ int *lwork, int *iwork, int *liwork, int *info);
294
+
295
+ void
296
+ PLUMED_BLAS_F77_FUNC(ssteqr, SSTEQR) (const char *compz, int *n, float *d__, float *e,
297
+ float *z__, int *ldz, float *work, int *info);
298
+
299
+ void
300
+ PLUMED_BLAS_F77_FUNC(dgelq2, DGELQ2) (int *m, int *n, double *a, int *lda, double *tau, double *work, int *info);
301
+
302
+ void
303
+ PLUMED_BLAS_F77_FUNC(dlae2, DLAE2) (double *a, double *b, double *c, double *rt1, double *rt2);
304
+
305
+ void
306
+ PLUMED_BLAS_F77_FUNC(dlaev2, DLAEV2) (double *a, double *b, double *c, double *rt1, double *rt2,
307
+ double *cs1, double *cs2);
308
+
309
+ void
310
+ PLUMED_BLAS_F77_FUNC(dlar1vx, DLAR1VX) (int *n, int *b1, int *bn, double *sigma, double *d, double *l, double *ld,
311
+ double *lld, double *eval, double *gersch, double *z, double *ztz, double *mingma,
312
+ int *r, int *isuppz, double *work);
313
+
314
+ void
315
+ PLUMED_BLAS_F77_FUNC(dlarrvx, DLARRVX) (int *n, double *d, double *l, int *isplit, int *m, double *w,
316
+ int *iblock, int *indexw, double *gersch, double *tol, double *z, int *ldz,
317
+ int *isuppz, double *work, int *iwork, int *info);
318
+
319
+ void
320
+ PLUMED_BLAS_F77_FUNC(dlasd4, DLASD4) (int *n, int *i, double *d, double *z, double *delta,
321
+ double *rho, double *sigma, double *work, int *info);
322
+
323
+ void
324
+ PLUMED_BLAS_F77_FUNC(dlasq1, DLASQ1) (int *n, double *d, double *e, double *work, int *info);
325
+
326
+
327
+ void
328
+ PLUMED_BLAS_F77_FUNC(dlasv2, DLASV2) (double *f, double *g, double *h, double *ssmin, double *ssmax,
329
+ double *snr, double *csr, double *snl, double *csl);
330
+
331
+ void
332
+ PLUMED_BLAS_F77_FUNC(dorm2r, DORM2R) (const char *side, const char *trans, int *m, int *n, int *k, double *a,
333
+ int *lda, double *tau, double *c, int *ldc, double *work, int *info);
334
+
335
+ void
336
+ PLUMED_BLAS_F77_FUNC(dstein, DSTEIN) (int *n, double *d, double *e, int *m, double *w, int *iblock, int *isplit,
337
+ double *z, int *ldz, double *work, int *iwork, int *ifail, int *info);
338
+
339
+ void
340
+ PLUMED_BLAS_F77_FUNC(dgelqf, DGELQF) (int *m, int *n, double *a, int *lda, double *tau,
341
+ double *work, int *lwork, int *info);
342
+
343
+ void
344
+ PLUMED_BLAS_F77_FUNC(dlaebz, DLAEBZ) (int *ijob, int *nitmax, int *n, int *mmax, int *minp, int *nbmin,
345
+ double *abstol, double *reltol, double *pivmin, double *d, double *e,
346
+ double *e2, int *nval, double *ab, double *c, int *mout, int *nab,
347
+ double *work, int *iwork, int *info);
348
+
349
+ void
350
+ PLUMED_BLAS_F77_FUNC(dlarf, DLARF) (const char *side, int *m, int *n, double *v, int *incv, double *tau,
351
+ double *c, int *ldc, double *work);
352
+
353
+ void
354
+ PLUMED_BLAS_F77_FUNC(dlartg, DLARTG) (double *f, double *g, double *cs, double *sn, double *r);
355
+
356
+ void
357
+ PLUMED_BLAS_F77_FUNC(dlasd5, DLASD5) (int *i, double *d, double *z, double *delta,
358
+ double *rho, double *dsigma, double *work);
359
+
360
+ void
361
+ PLUMED_BLAS_F77_FUNC(dlasq2, DLASQ2) (int *n, double *z, int *info);
362
+
363
+ void
364
+ PLUMED_BLAS_F77_FUNC(dlasq3, DLASQ3) (int *i0, int *n0, double *z, int *pp, double *dmin,
365
+ double *sigma, double *desig, double *qmax, int *nfail,
366
+ int *iter, int *ndiv, int *ieee);
367
+
368
+ void
369
+ PLUMED_BLAS_F77_FUNC(dlaswp, DLASWP) (int *n, double *a, int *lda, int *k1, int *k2, int *ipiv, int *incx);
370
+
371
+ void
372
+ PLUMED_BLAS_F77_FUNC(dormbr, DORMBR) (const char *vect, const char *side, const char *trans, int *m, int *n, int *k,
373
+ double *a, int *lda, double *tau, double *c, int *ldc, double *work,
374
+ int *lwork, int *info);
375
+
376
+ void
377
+ PLUMED_BLAS_F77_FUNC(dsterf, DSTERF) (int *n, double *d, double *e, int *info);
378
+
379
+ void
380
+ PLUMED_BLAS_F77_FUNC(dgeqr2, DGEQR2) (int *m, int *n, double *a, int *lda, double *tau,
381
+ double *work, int *info);
382
+
383
+ void
384
+ PLUMED_BLAS_F77_FUNC(dlaed6, DLAED6) (int *kniter, int *orgati, double *rho, double *d,
385
+ double *z, double *finit, double *tau, int *info);
386
+
387
+ void
388
+ PLUMED_BLAS_F77_FUNC(dlarfb, DLARFB) (const char *side, const char *trans, const char *direct, const char *storev, int *m, int *n,
389
+ int *k, double *v, int *ldv, double *t, int *ldt, double *c,
390
+ int *ldc, double *work, int *ldwork);
391
+
392
+ void
393
+ PLUMED_BLAS_F77_FUNC(dlaruv, DLARUV) (int *iseed, int *n, double *x);
394
+
395
+ void
396
+ PLUMED_BLAS_F77_FUNC(dlasd6, DLASD6) (int *icompq, int *nl, int *nr, int *sqre, double *d, double *vf,
397
+ double *vl, double *alpha, double *beta, int *idxq, int *perm,
398
+ int *givptr, int *givcol, int *ldgcol, double *givnum, int *ldgnum,
399
+ double *poles, double *difl, double *difr, double *z, int *k,
400
+ double *c, double *s, double *work, int *iwork, int *info);
401
+
402
+ void
403
+ PLUMED_BLAS_F77_FUNC(dlatrd, DLATRD) (const char *uplo, int *n, int *nb, double *a, int *lda, double *e,
404
+ double * tau, double *w, int *ldw);
405
+
406
+ void
407
+ PLUMED_BLAS_F77_FUNC(dorml2, DORML2) (const char *side, const char *trans, int *m, int *n, int *k, double *a,
408
+ int *lda, double *tau, double *c, int *ldc, double *work, int *info);
409
+
410
+ void
411
+ PLUMED_BLAS_F77_FUNC(dstevr, DSTEVR) (const char *jobz, const char *range, int *n, double *d, double *e, double *vl,
412
+ double *vu, int *il, int *iu, double *abstol, int *m, double *w,
413
+ double *z, int *ldz, int *isuppz, double *work,
414
+ int *lwork, int *iwork, int *liwork, int *info);
415
+
416
+ void
417
+ PLUMED_BLAS_F77_FUNC(dsytrd, DSYTRD) (const char *uplo, int *n, double * a, int *lda, double *d,
418
+ double *e, double *tau, double *work, int *lwork, int *info);
419
+
420
+ void
421
+ PLUMED_BLAS_F77_FUNC(dsyevr, DSYEVR) (const char *jobz, const char *range, const char *uplo, int *n,
422
+ double *a, int *lda, double *vl, double *vu, int *
423
+ il, int *iu, double *abstol, int *m, double *w,
424
+ double *z__, int *ldz, int *isuppz, double *work,
425
+ int *lwork, int *iwork, int *liwork, int *info);
426
+
427
+ void
428
+ PLUMED_BLAS_F77_FUNC(dormql, DORMQL) (const char *side, const char *trans, int *m, int *n,
429
+ int *k, double *a, int *lda, double *tau, double *
430
+ c, int *ldc, double *work, int *lwork, int *info);
431
+
432
+ void
433
+ PLUMED_BLAS_F77_FUNC(dormqr, DORMQR) (const char *side, const char *trans, int *m, int *n, int *k, double *a,
434
+ int *lda, double *tau, double *c, int *ldc,
435
+ double *work, int *lwork, int *info);
436
+
437
+ void
438
+ PLUMED_BLAS_F77_FUNC(dorgbr, DORGBR) (const char *vect, int *m, int *n, int *k, double *a, int *lda,
439
+ double *tau, double *work, int *lwork, int *info);
440
+
441
+ void
442
+ PLUMED_BLAS_F77_FUNC(dlasq5, DLASQ5) (int *i0, int *n0, double *z, int *pp, double *tau, double *dmin,
443
+ double *dmin1, double *dmin2, double *dn, double *dnm1,
444
+ double *dnm2, int *ieee);
445
+
446
+ void
447
+ PLUMED_BLAS_F77_FUNC(dlasd8, DLASD8) (int *icompq, int *k, double *d, double *z, double *vf, double *vl,
448
+ double *difl, double *difr, int *lddifr, double *dsigma,
449
+ double *work, int *info);
450
+
451
+ void
452
+ PLUMED_BLAS_F77_FUNC(dlascl, DLASCL) (const char *type, int *kl, int *ku, double *cfrom, double *cto, int *m,
453
+ int *n, double *a, int *lda, int *info);
454
+
455
+ void
456
+ PLUMED_BLAS_F77_FUNC(dlarft, DLARFT) (const char *direct, const char *storev, int *n, int *k, double *v,
457
+ int *ldv, double *tau, double *t, int *ldt);
458
+
459
+ void
460
+ PLUMED_BLAS_F77_FUNC(dlagts, DLAGTS) (int *job, int *n, double *a, double *b, double *c, double *d,
461
+ int *in, double *y, double *tol, int *info);
462
+
463
+ void
464
+ PLUMED_BLAS_F77_FUNC(dgesdd, DGESDD) (const char *jobz, int *m, int *n, double *a, int *lda, double *s, double *u,
465
+ int *ldu, double *vt, int *ldvt, double *work, int *lwork,
466
+ int *iwork, int *info);
467
+
468
+ void
469
+ PLUMED_BLAS_F77_FUNC(dsytd2, DSYTD2) (const char *uplo, int *n, double *a, int *lda, double *d,
470
+ double *e, double *tau, int *info);
471
+
472
+ void
473
+ PLUMED_BLAS_F77_FUNC(dormlq, DORMLQ) (const char *side, const char *trans, int *m, int *n, int *k, double *a, int *lda,
474
+ double *tau, double *c, int *ldc, double *work, int *lwork, int *info);
475
+
476
+ void
477
+ PLUMED_BLAS_F77_FUNC(dorg2r, DORG2R) (int *m, int *n, int *k, double *a, int *lda, double *tau,
478
+ double *work, int *info);
479
+
480
+ void
481
+ PLUMED_BLAS_F77_FUNC(dlasq4, DLASQ4) (int *i0, int *n0, double *z, int *pp, int *n0in, double *dmin,
482
+ double *dmin1, double *dmin2, double *dn, double *dn1,
483
+ double *dn2, double *tau, int *ttype);
484
+
485
+ void
486
+ PLUMED_BLAS_F77_FUNC(dlasd7, DLASD7) (int *icompq, int *nl, int *nr, int *sqre, int *k, double *d, double *z,
487
+ double *zw, double *vf, double *vfw, double *vl, double *vlw,
488
+ double *alpha, double *beta, double *dsigma, int *idx, int *idxp,
489
+ int *idxq, int *perm, int *givptr, int *givcol, int *ldgcol,
490
+ double *givnum, int *ldgnum, double *c, double *s, int *info);
491
+
492
+ void
493
+ PLUMED_BLAS_F77_FUNC(dlas2, DLAS2) (double *f, double *g, double *h, double *ssmin, double *ssmax);
494
+
495
+ void
496
+ PLUMED_BLAS_F77_FUNC(dlarfg, DLARFG) (int *n, double *alpha, double *x, int *incx, double *tau);
497
+
498
+ void
499
+ PLUMED_BLAS_F77_FUNC(dlagtf, DLAGTF) (int *n, double *a, double *lambda, double *b, double *c,
500
+ double *tol, double *d, int *in, int *info);
501
+
502
+ void
503
+ PLUMED_BLAS_F77_FUNC(dgeqrf, DGEQRF) (int *m, int *n, double *a, int *lda, double *tau,
504
+ double *work, int *lwork, int *info);
505
+
506
+
507
+
508
+ /* Single precision */
509
+
510
+ void
511
+ PLUMED_BLAS_F77_FUNC(sbdsdc, SBDSDC) (const char *uplo, const char *compq, int *n, float *d, float *e, float *u,
512
+ int *ldu, float *vt, int *ldvt, float *q, int *iq, float *work,
513
+ int *iwork, int *info);
514
+
515
+ void
516
+ PLUMED_BLAS_F77_FUNC(sgetf2, SGETF2) (int *m, int *n, float *a, int *lda, int *ipiv, int *info);
517
+
518
+ void
519
+ PLUMED_BLAS_F77_FUNC(slamrg, SLAMRG) (int *n1, int *n2, float *a, int *dtrd1, int *dtrd2, int *index);
520
+
521
+ void
522
+ PLUMED_BLAS_F77_FUNC(slarnv, SLARNV) (int *idist, int *iseed, int *n, float *x);
523
+
524
+ void
525
+ PLUMED_BLAS_F77_FUNC(slasd0, SLASD0) (int *n, int *sqre, float *d, float *e, float *u,
526
+ int *ldu, float *vt, int *ldvt, int *smlsiz, int *iwork,
527
+ float *work, int *info);
528
+
529
+ void
530
+ PLUMED_BLAS_F77_FUNC(slasda, SLASDA) (int *icompq, int *smlsiz, int *n, int *sqre, float *d, float *e,
531
+ float *u, int *ldu, float *vt, int *k, float *difl, float *difr,
532
+ float *z, float *poles, int *givptr, int *givcol, int *ldgcol,
533
+ int *perm, float *givnum, float *c, float *s,
534
+ float *work, int *iwork, int *info);
535
+
536
+ void
537
+ PLUMED_BLAS_F77_FUNC(slasq6, SLASQ6) (int *i0, int *n0, float *z, int *pp, float *dmin, float *dmin1,
538
+ float *dmin2, float *dn, float *dnm1, float *dnm2);
539
+
540
+ void
541
+ PLUMED_BLAS_F77_FUNC(sorgl2, SORGL2) (int *m, int *n, int *k, float *a, int *lda,
542
+ float *tau, float *work, int *info);
543
+
544
+ void
545
+ PLUMED_BLAS_F77_FUNC(sbdsqr, SBDSQR) (const char *uplo, int *n, int *ncvt, int *nru, int *ncc, float *d,
546
+ float *e, float *vt, int *ldvt, float *u, int *ldu,
547
+ float *c, int *ldc, float *work, int *info);
548
+
549
+ void
550
+ PLUMED_BLAS_F77_FUNC(sgetrf, SGETRF) (int *m, int *n, float *a, int *lda, int *ipiv, int *info);
551
+
552
+ void
553
+ PLUMED_BLAS_F77_FUNC(sgetri, SGETRI) (int *n, float *a, int *lda, int *ipiv, float *work,
554
+ int *lwork, int *info);
555
+
556
+ void
557
+ PLUMED_BLAS_F77_FUNC(sgetrs, SGETRS) (const char *trans, int *n, int *nrhs, float *a, int *lda, int *ipiv,
558
+ float *b, int *ldb, int *info);
559
+
560
+ void
561
+ PLUMED_BLAS_F77_FUNC(strtri, STRTRI) (const char *uplo, const char *diag, int *n, float *a, int *lda, int *info);
562
+
563
+ void
564
+ PLUMED_BLAS_F77_FUNC(strti2, STRTI2) (const char *uplo, const char *diag, int *n, float *a, int *lda, int *info);
565
+
566
+ __PLUMED_LAPACK_RETURNS_FLOAT
567
+ PLUMED_BLAS_F77_FUNC(slange, SLANGE) (const char *norm, int *m, int *n, float *a, int *lda, float *work);
568
+
569
+ void
570
+ PLUMED_BLAS_F77_FUNC(slarrbx, SLARRBX) (int *n, float *d, float *l, float *ld, float *lld, int *ifirst,
571
+ int *ilast, float *rtol1, float *rtol2, int *offset, float *w,
572
+ float *wgap, float *werr, float *work, int *iwork, int *info);
573
+
574
+ void
575
+ PLUMED_BLAS_F77_FUNC(slasd1, SLASD1) (int *nl, int *nr, int *sqre, float *d, float *alpha, float *beta,
576
+ float *u, int *ldu, float *vt, int *ldvt, int *idxq, int *iwork,
577
+ float *work, int *info);
578
+
579
+ void
580
+ PLUMED_BLAS_F77_FUNC(slasdq, SLASDQ) (const char *uplo, int *sqre, int *n, int *ncvt, int *nru, int *ncc,
581
+ float *d, float *e, float *vt, int *ldvt, float *u, int *ldu,
582
+ float *c, int *ldc, float *work, int *info);
583
+
584
+ void
585
+ PLUMED_BLAS_F77_FUNC(slasr, SLASR) (const char *side, const char *pivot, const char *direct, int *m, int *n, float *c,
586
+ float *s, float *a, int *lda);
587
+
588
+ void
589
+ PLUMED_BLAS_F77_FUNC(sorglq, SORGLQ) (int *m, int *n, int *k, float *a, int *lda,
590
+ float *tau, float *work, int *lwork, int *info);
591
+
592
+ void
593
+ PLUMED_BLAS_F77_FUNC(sormtr, SORMTR) (const char *side, const char *uplo, const char *trans, int *m, int *n, float *a,
594
+ int *lda, float *tau, float *c, int *ldc,
595
+ float *work, int *lwork, int *info);
596
+
597
+ void
598
+ PLUMED_BLAS_F77_FUNC(sgebd2, SGEBD2) (int *m, int *n, float *a, int *lda, float *d, float *e,
599
+ float *tauq, float *taup, float *work, int *info);
600
+
601
+ void
602
+ PLUMED_BLAS_F77_FUNC(slabrd, SLABRD) (int *m, int *n, int *nb, float *a, int *lda, float *d,
603
+ float *e, float *tauq, float *taup, float *x,
604
+ int *ldx, float *y, int *ldy);
605
+
606
+ __PLUMED_LAPACK_RETURNS_FLOAT
607
+ PLUMED_BLAS_F77_FUNC(slanst, SLANST) (const char *norm, int *n, float *d, float *e);
608
+
609
+ __PLUMED_LAPACK_RETURNS_FLOAT
610
+ PLUMED_BLAS_F77_FUNC(slansy, SLANSY) (const char *norm, const char *uplo, int *n, float *a, int *lda, float *work);
611
+
612
+ void
613
+ PLUMED_BLAS_F77_FUNC(slarrex, SLARREX) (const char *range, int *n, float *vl, float *vu, int *il, int *iu,
614
+ float *d, float *e, float *tol, int *nsplit,
615
+ int *isplit, int *m, float *w, int *iblock, int *indexw,
616
+ float *gersch, float *work, int *iwork, int *info);
617
+
618
+ void
619
+ PLUMED_BLAS_F77_FUNC(slasd2, SLASD2) (int *nl, int *nr, int *sqre, int *k, float *d, float *z,
620
+ float *alpha, float *beta, float *u, int *ldu, float *vt,
621
+ int *ldvt, float *dsigma, float *u2, int *ldu2, float *vt2,
622
+ int *ldvt2, int *idxp, int *idx, int *idxc,
623
+ int *idxq, int *coltyp, int *info);
624
+
625
+ void
626
+ PLUMED_BLAS_F77_FUNC(slasdt, SLASDT) (int *n, int *lvl, int *nd, int *inode, int *ndiml,
627
+ int *ndimr, int *msub);
628
+
629
+ void
630
+ PLUMED_BLAS_F77_FUNC(slasrt, SLASRT) (const char *id, int *n, float *d, int *info);
631
+
632
+ void
633
+ PLUMED_BLAS_F77_FUNC(slasrt2, SLASRT2) (const char *id, int *n, float *d, int *key, int *info);
634
+
635
+ void
636
+ PLUMED_BLAS_F77_FUNC(sorgqr, SORGQR) (int *m, int *n, int *k, float *a, int *lda, float *tau,
637
+ float *work, int *lwork, int *info);
638
+
639
+ void
640
+ PLUMED_BLAS_F77_FUNC(sstebz, SSTEBZ) (const char *range, const char *order, int *n, float *vl, float *vu,
641
+ int *il, int *iu, float *abstol, float *d, float *e,
642
+ int *m, int *nsplit, float *w, int *iblock, int *isplit,
643
+ float *work, int *iwork, int *info);
644
+
645
+ void
646
+ PLUMED_BLAS_F77_FUNC(sgebrd, SGEBRD) (int *m, int *n, float *a, int *lda, float *d, float *e,
647
+ float *tauq, float *taup, float *work, int *lwork, int *info);
648
+
649
+ void
650
+ PLUMED_BLAS_F77_FUNC(slacpy, SLACPY) (const char *uplo, int *m, int *n, float *a, int *lda, float *b, int *ldb);
651
+
652
+ __PLUMED_LAPACK_RETURNS_FLOAT
653
+ PLUMED_BLAS_F77_FUNC(slapy2, SLAPY2) (float * x, float * y);
654
+
655
+ void
656
+ PLUMED_BLAS_F77_FUNC(slarrfx, SLARRFX) (int *n, float *d, float *l, float *ld, float *lld, int *ifirst,
657
+ int *ilast, float *w, float *sigma, float *dplus, float *lplus,
658
+ float *work, int *info);
659
+
660
+ void
661
+ PLUMED_BLAS_F77_FUNC(slasd3, SLASD3) (int *nl, int *nr, int *sqre, int *k, float *d, float *q, int *ldq,
662
+ float *dsigma, float *u, int *ldu, float *u2, int *ldu2,
663
+ float *vt, int *ldvt, float *vt2, int *ldvt2, int *idxc,
664
+ int *ctot, float *z, int *info);
665
+
666
+ void
667
+ PLUMED_BLAS_F77_FUNC(slaset, SLASET) (const char *uplo, int *m, int *n, float *alpha,
668
+ float *beta, float *a, int *lda);
669
+
670
+ void
671
+ PLUMED_BLAS_F77_FUNC(slassq, SLASSQ) (int *n, float *x, int *incx, float *scale, float *sumsq);
672
+
673
+ void
674
+ PLUMED_BLAS_F77_FUNC(sorm2l, SORM2L) (const char *side, const char *trans, int *m, int *n, int *k, float *a, int *lda,
675
+ float *tau, float *c, int *ldc, float *work, int *info);
676
+
677
+ void
678
+ PLUMED_BLAS_F77_FUNC(sstegr, SSTEGR) (const char *jobz, const char *range, int *n, float *d, float *e, float *vl,
679
+ float *vu, int *il, int *iu, float *abstol, int *m, float *w,
680
+ float *z, int *ldz, int *isuppz, float *work,
681
+ int *lwork, int *iwork, int *liwork, int *info);
682
+
683
+ void
684
+ PLUMED_BLAS_F77_FUNC(sgelq2, SGELQ2) (int *m, int *n, float *a, int *lda, float *tau, float *work, int *info);
685
+
686
+ void
687
+ PLUMED_BLAS_F77_FUNC(slae2, SLAE2) (float *a, float *b, float *c, float *rt1, float *rt2);
688
+
689
+ void
690
+ PLUMED_BLAS_F77_FUNC(slaev2, SLAEV2) (float *a, float *b, float *c, float *rt1, float *rt2,
691
+ float *cs1, float *cs2);
692
+
693
+ void
694
+ PLUMED_BLAS_F77_FUNC(slar1vx, SLAR1VX) (int *n, int *b1, int *bn, float *sigma, float *d, float *l, float *ld,
695
+ float *lld, float *eval, float *gersch, float *z, float *ztz, float *mingma,
696
+ int *r, int *isuppz, float *work);
697
+
698
+ void
699
+ PLUMED_BLAS_F77_FUNC(slarrvx, SLARRVX) (int *n, float *d, float *l, int *isplit, int *m, float *w,
700
+ int *iblock, int *indexw, float *gersch, float *tol, float *z, int *ldz,
701
+ int *isuppz, float *work, int *iwork, int *info);
702
+
703
+ void
704
+ PLUMED_BLAS_F77_FUNC(slasd4, SLASD4) (int *n, int *i, float *d, float *z, float *delta,
705
+ float *rho, float *sigma, float *work, int *info);
706
+
707
+ void
708
+ PLUMED_BLAS_F77_FUNC(slasq1, SLASQ1) (int *n, float *d, float *e, float *work, int *info);
709
+
710
+
711
+ void
712
+ PLUMED_BLAS_F77_FUNC(slasv2, SLASV2) (float *f, float *g, float *h, float *ssmin, float *ssmax,
713
+ float *snr, float *csr, float *snl, float *csl);
714
+
715
+ void
716
+ PLUMED_BLAS_F77_FUNC(sorm2r, SORM2R) (const char *side, const char *trans, int *m, int *n, int *k, float *a,
717
+ int *lda, float *tau, float *c, int *ldc, float *work, int *info);
718
+
719
+ void
720
+ PLUMED_BLAS_F77_FUNC(sstein, SSTEIN) (int *n, float *d, float *e, int *m, float *w, int *iblock, int *isplit,
721
+ float *z, int *ldz, float *work, int *iwork, int *ifail, int *info);
722
+
723
+ void
724
+ PLUMED_BLAS_F77_FUNC(sgelqf, SGELQF) (int *m, int *n, float *a, int *lda, float *tau,
725
+ float *work, int *lwork, int *info);
726
+
727
+ void
728
+ PLUMED_BLAS_F77_FUNC(slaebz, SLAEBZ) (int *ijob, int *nitmax, int *n, int *mmax, int *minp, int *nbmin,
729
+ float *abstol, float *reltol, float *pivmin, float *d, float *e,
730
+ float *e2, int *nval, float *ab, float *c, int *mout, int *nab,
731
+ float *work, int *iwork, int *info);
732
+
733
+ void
734
+ PLUMED_BLAS_F77_FUNC(slarf, SLARF) (const char *side, int *m, int *n, float *v, int *incv, float *tau,
735
+ float *c, int *ldc, float *work);
736
+
737
+ void
738
+ PLUMED_BLAS_F77_FUNC(slartg, SLARTG) (float *f, float *g, float *cs, float *sn, float *r);
739
+
740
+ void
741
+ PLUMED_BLAS_F77_FUNC(slasd5, SLASD5) (int *i, float *d, float *z, float *delta,
742
+ float *rho, float *dsigma, float *work);
743
+
744
+ void
745
+ PLUMED_BLAS_F77_FUNC(slasq2, SLASQ2) (int *n, float *z, int *info);
746
+
747
+ void
748
+ PLUMED_BLAS_F77_FUNC(slasq3, SLASQ3) (int *i0, int *n0, float *z, int *pp, float *dmin,
749
+ float *sigma, float *desig, float *qmax, int *nfail,
750
+ int *iter, int *ndiv, int *ieee);
751
+
752
+ void
753
+ PLUMED_BLAS_F77_FUNC(slaswp, SLASWP) (int *n, float *a, int *lda, int *k1, int *k2, int *ipiv, int *incx);
754
+
755
+ void
756
+ PLUMED_BLAS_F77_FUNC(sormbr, SORMBR) (const char *vect, const char *side, const char *trans, int *m, int *n, int *k,
757
+ float *a, int *lda, float *tau, float *c, int *ldc, float *work,
758
+ int *lwork, int *info);
759
+
760
+ void
761
+ PLUMED_BLAS_F77_FUNC(ssterf, SSTERF) (int *n, float *d, float *e, int *info);
762
+
763
+ void
764
+ PLUMED_BLAS_F77_FUNC(sgeqr2, SGEQR2) (int *m, int *n, float *a, int *lda, float *tau,
765
+ float *work, int *info);
766
+
767
+ void
768
+ PLUMED_BLAS_F77_FUNC(slaed6, SLAED6) (int *kniter, int *orgati, float *rho, float *d,
769
+ float *z, float *finit, float *tau, int *info);
770
+
771
+ void
772
+ PLUMED_BLAS_F77_FUNC(slarfb, SLARFB) (const char *side, const char *trans, const char *direct, const char *storev, int *m, int *n,
773
+ int *k, float *v, int *ldv, float *t, int *ldt, float *c,
774
+ int *ldc, float *work, int *ldwork);
775
+
776
+ void
777
+ PLUMED_BLAS_F77_FUNC(slaruv, SLARUV) (int *iseed, int *n, float *x);
778
+
779
+ void
780
+ PLUMED_BLAS_F77_FUNC(slasd6, SLASD6) (int *icompq, int *nl, int *nr, int *sqre, float *d, float *vf,
781
+ float *vl, float *alpha, float *beta, int *idxq, int *perm,
782
+ int *givptr, int *givcol, int *ldgcol, float *givnum, int *ldgnum,
783
+ float *poles, float *difl, float *difr, float *z, int *k,
784
+ float *c, float *s, float *work, int *iwork, int *info);
785
+
786
+ void
787
+ PLUMED_BLAS_F77_FUNC(slatrd, SLATRD) (const char *uplo, int *n, int *nb, float *a, int *lda, float *e,
788
+ float * tau, float *w, int *ldw);
789
+
790
+ void
791
+ PLUMED_BLAS_F77_FUNC(sorml2, SORML2) (const char *side, const char *trans, int *m, int *n, int *k, float *a,
792
+ int *lda, float *tau, float *c, int *ldc, float *work, int *info);
793
+
794
+ void
795
+ PLUMED_BLAS_F77_FUNC(sstevr, SSTEVR) (const char *jobz, const char *range, int *n, float *d, float *e, float *vl,
796
+ float *vu, int *il, int *iu, float *abstol, int *m, float *w,
797
+ float *z, int *ldz, int *isuppz, float *work,
798
+ int *lwork, int *iwork, int *liwork, int *info);
799
+
800
+ void
801
+ PLUMED_BLAS_F77_FUNC(ssytrd, SSYTRD) (const char *uplo, int *n, float * a, int *lda, float *d,
802
+ float *e, float *tau, float *work, int *lwork, int *info);
803
+
804
+ void
805
+ PLUMED_BLAS_F77_FUNC(ssyevr, SSYEVR) (const char *jobz, const char *range, const char *uplo, int *n,
806
+ float *a, int *lda, float *vl, float *vu, int *
807
+ il, int *iu, float *abstol, int *m, float *w,
808
+ float *z__, int *ldz, int *isuppz, float *work,
809
+ int *lwork, int *iwork, int *liwork, int *info);
810
+
811
+ void
812
+ PLUMED_BLAS_F77_FUNC(sormql, SORMQL) (const char *side, const char *trans, int *m, int *n,
813
+ int *k, float *a, int *lda, float *tau, float *
814
+ c, int *ldc, float *work, int *lwork, int *info);
815
+
816
+ void
817
+ PLUMED_BLAS_F77_FUNC(sormqr, SORMQR) (const char *side, const char *trans, int *m, int *n, int *k, float *a,
818
+ int *lda, float *tau, float *c, int *ldc,
819
+ float *work, int *lwork, int *info);
820
+
821
+ void
822
+ PLUMED_BLAS_F77_FUNC(sorgbr, SORGBR) (const char *vect, int *m, int *n, int *k, float *a, int *lda,
823
+ float *tau, float *work, int *lwork, int *info);
824
+
825
+ void
826
+ PLUMED_BLAS_F77_FUNC(slasq5, SLASQ5) (int *i0, int *n0, float *z, int *pp, float *tau, float *dmin,
827
+ float *dmin1, float *dmin2, float *dn, float *dnm1,
828
+ float *dnm2, int *ieee);
829
+
830
+ void
831
+ PLUMED_BLAS_F77_FUNC(slasd8, SLASD8) (int *icompq, int *k, float *d, float *z, float *vf, float *vl,
832
+ float *difl, float *difr, int *lddifr, float *dsigma,
833
+ float *work, int *info);
834
+
835
+ void
836
+ PLUMED_BLAS_F77_FUNC(slascl, SLASCL) (const char *type, int *kl, int *ku, float *cfrom, float *cto, int *m,
837
+ int *n, float *a, int *lda, int *info);
838
+
839
+ void
840
+ PLUMED_BLAS_F77_FUNC(slarft, SLARFT) (const char *direct, const char *storev, int *n, int *k, float *v,
841
+ int *ldv, float *tau, float *t, int *ldt);
842
+
843
+ void
844
+ PLUMED_BLAS_F77_FUNC(slagts, SLAGTS) (int *job, int *n, float *a, float *b, float *c, float *d,
845
+ int *in, float *y, float *tol, int *info);
846
+
847
+ void
848
+ PLUMED_BLAS_F77_FUNC(sgesdd, SGESDD) (const char *jobz, int *m, int *n, float *a, int *lda, float *s, float *u,
849
+ int *ldu, float *vt, int *ldvt, float *work, int *lwork,
850
+ int *iwork, int *info);
851
+
852
+ void
853
+ PLUMED_BLAS_F77_FUNC(ssytd2, SSYTD2) (const char *uplo, int *n, float *a, int *lda, float *d,
854
+ float *e, float *tau, int *info);
855
+
856
+ void
857
+ PLUMED_BLAS_F77_FUNC(sormlq, SORMLQ) (const char *side, const char *trans, int *m, int *n, int *k, float *a, int *lda,
858
+ float *tau, float *c, int *ldc, float *work, int *lwork, int *info);
859
+
860
+ void
861
+ PLUMED_BLAS_F77_FUNC(sorg2r, SORG2R) (int *m, int *n, int *k, float *a, int *lda, float *tau,
862
+ float *work, int *info);
863
+
864
+ void
865
+ PLUMED_BLAS_F77_FUNC(slasq4, SLASQ4) (int *i0, int *n0, float *z, int *pp, int *n0in, float *dmin,
866
+ float *dmin1, float *dmin2, float *dn, float *dn1,
867
+ float *dn2, float *tau, int *ttype);
868
+
869
+ void
870
+ PLUMED_BLAS_F77_FUNC(slasd7, SLASD7) (int *icompq, int *nl, int *nr, int *sqre, int *k, float *d, float *z,
871
+ float *zw, float *vf, float *vfw, float *vl, float *vlw,
872
+ float *alpha, float *beta, float *dsigma, int *idx, int *idxp,
873
+ int *idxq, int *perm, int *givptr, int *givcol, int *ldgcol,
874
+ float *givnum, int *ldgnum, float *c, float *s, int *info);
875
+
876
+ void
877
+ PLUMED_BLAS_F77_FUNC(slas2, SLAS2) (float *f, float *g, float *h, float *ssmin, float *ssmax);
878
+
879
+ void
880
+ PLUMED_BLAS_F77_FUNC(slarfg, SLARFG) (int *n, float *alpha, float *x, int *incx, float *tau);
881
+
882
+ void
883
+ PLUMED_BLAS_F77_FUNC(slagtf, SLAGTF) (int *n, float *a, float *lambda, float *b, float *c,
884
+ float *tol, float *d, int *in, int *info);
885
+
886
+ void
887
+ PLUMED_BLAS_F77_FUNC(sgeqrf, SGEQRF) (int *m, int *n, float *a, int *lda, float *tau,
888
+ float *work, int *lwork, int *info);
889
+
890
+
891
+ }
892
+ #if ! defined(__PLUMED_HAS_EXTERNAL_LAPACK)
893
+ }
894
+ #endif
895
+
896
+ /*! \endcond */
897
+
898
+ #endif /* GMX_LAPACK_H */
899
+ #endif