Home
last modified time | relevance | path

Searched refs:algoNames (Results 1 – 11 of 11) sorted by relevance

/dports/math/openturns/openturns-1.18/lib/test/
H A Dt_NLopt_std.cxx50 Description algoNames(NLopt::GetAlgorithmNames()); in main() local
51 for (UnsignedInteger i = 0; i < algoNames.getSize(); ++i) in main()
54 …if ((algoNames[i] == "GD_STOGO") || (algoNames[i] == "GD_STOGO_RAND") || (algoNames[i] == "GN_AGS"… in main()
60 if ((algoNames[i].find("NEWUOA") != std::string::npos) in main()
61 || (algoNames[i].find("MLSL") != std::string::npos) in main()
62 || (algoNames[i] == "LN_COBYLA") in main()
63 || (algoNames[i] == "GN_ESCH") in main()
64 || (algoNames[i].find("AUGLAG_EQ") != std::string::npos)) in main()
66 fullprint << "-- Skipped: algo=" << algoNames[i] << std::endl; in main()
70 NLopt algo(algoNames[i]); in main()
[all …]
/dports/math/openturns/openturns-1.18/lib/src/Base/Optim/
H A DBonmin.cxx77 Description algoNames(5); in GetAlgorithmNames() local
78 algoNames[0] = "B-BB"; in GetAlgorithmNames()
79 algoNames[1] = "B-OA"; in GetAlgorithmNames()
80 algoNames[2] = "B-QG"; in GetAlgorithmNames()
81 algoNames[3] = "B-Hyb"; in GetAlgorithmNames()
82 algoNames[4] = "B-iFP"; in GetAlgorithmNames()
84 return algoNames; in GetAlgorithmNames()
H A DDlib.cxx359 static Description algoNames; in GetAlgorithmNames() local
361 if (!algoNames.getSize()) in GetAlgorithmNames()
363 algoNames.add("cg"); in GetAlgorithmNames()
364 algoNames.add("bfgs"); in GetAlgorithmNames()
365 algoNames.add("lbfgs"); in GetAlgorithmNames()
366 algoNames.add("newton"); in GetAlgorithmNames()
368 algoNames.add("global"); in GetAlgorithmNames()
370 algoNames.add("least_squares"); in GetAlgorithmNames()
371 algoNames.add("least_squares_lm"); in GetAlgorithmNames()
372 algoNames.add("trust_region"); in GetAlgorithmNames()
[all …]
/dports/math/openturns/openturns-1.18/python/test/
H A Dt_Ceres_std.py23 algoNames = ot.Ceres.GetAlgorithmNames() variable
24 print(algoNames)
32 for algoName in algoNames:
78 for algoName in algoNames:
H A Dt_NLopt_std.py26 algoNames = ot.NLopt.GetAlgorithmNames() variable
28 for algoName in algoNames:
/dports/security/libzrtpcppcore/ZRTPCPP-4.6.6/zrtp/
H A DZrtpSdesStream.cpp315 int ZrtpSdesStream::getCryptoMixAttribute(char *algoNames, size_t length) { in getCryptoMixAttribute() argument
325 strcpy(algoNames, cp->name); in getCryptoMixAttribute()
332 strcpy(algoNames, knownMixAlgos[0].name); in getCryptoMixAttribute()
333 return strlen(algoNames); in getCryptoMixAttribute()
338 bool ZrtpSdesStream::setCryptoMixAttribute(const char *algoNames) { in setCryptoMixAttribute() argument
340 int len = strlen(algoNames); in setCryptoMixAttribute()
344 std::string algoIn(algoNames); in setCryptoMixAttribute()
/dports/security/libzrtpcppcore/ZRTPCPP-4.6.6/zrtp/libzrtpcpp/
H A DZrtpSdesStream.h230 int getCryptoMixAttribute(char *algoNames, size_t length); in setbuf()
246 bool setCryptoMixAttribute(const char *algoNames); in setbuf()
/dports/security/libzrtpcppcore/ZRTPCPP-4.6.6/clients/tivi/
H A DCtZrtpSession.h587 int getCryptoMixAttribute(char *algoNames, size_t length, streamName streamNm);
607 bool setCryptoMixAttribute(const char *algoNames, streamName streamNm);
H A DCtZrtpStream.h348 int getCryptoMixAttribute(char *algoNames, size_t length);
365 bool setCryptoMixAttribute(const char *algoNames);
H A DCtZrtpSession.cpp609 int CtZrtpSession::getCryptoMixAttribute(char *algoNames, size_t length, streamName streamNm) { in getCryptoMixAttribute() argument
614 return stream->getCryptoMixAttribute(algoNames, length); in getCryptoMixAttribute()
617 bool CtZrtpSession::setCryptoMixAttribute(const char *algoNames, streamName streamNm) { in setCryptoMixAttribute() argument
622 return stream->setCryptoMixAttribute(algoNames); in setCryptoMixAttribute()
H A DCtZrtpStream.cpp689 int CtZrtpStream::getCryptoMixAttribute(char *algoNames, size_t length) { in getCryptoMixAttribute() argument
694 return sdes->getCryptoMixAttribute(algoNames, length); in getCryptoMixAttribute()
706 bool CtZrtpStream::setCryptoMixAttribute(const char *algoNames) { in setCryptoMixAttribute() argument
713 return sdes->setCryptoMixAttribute(algoNames); in setCryptoMixAttribute()