keyword
stringclasses
7 values
repo_name
stringlengths
8
98
file_path
stringlengths
4
244
file_extension
stringclasses
29 values
file_size
int64
0
84.1M
line_count
int64
0
1.6M
content
stringlengths
1
84.1M
language
stringclasses
14 values
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/SetHash.hpp
.hpp
807
27
#ifndef _SETHASH_HPP #define _SETHASH_HPP #include <functional> #include <set> #include <unordered_set> template <typename T> struct SetHash { // Mutlplying by a large prime should broadcast to higher bits (and // since it's prime, taking % 2^64 should be distributed fairly // uniformly). Also XOR with single e...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/Scheduler.hpp
.hpp
2,113
69
#ifndef _SCHEDULER_HPP #define _SCHEDULER_HPP #include "Edge.hpp" #include "MessagePasser.hpp" #include "InferenceGraph.hpp" template <typename VARIABLE_KEY> class Scheduler { protected: // dampening_lambda = 0.0 uses only _current_message; with 1.0, it // only uses _old_message. double _dampening_lambda; dou...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/BeliefPropagationInferenceEngine.hpp
.hpp
9,772
228
#ifndef _BELIEFPROPAGATIONINFERENCEENGINE_HPP #define _BELIEFPROPAGATIONINFERENCEENGINE_HPP #include "InferenceEngine.hpp" #include "Scheduler.hpp" #include "InferenceGraph.hpp" #include "SetHash.hpp" #include "Hyperedge.hpp" #include "../Utility/to_string.hpp" #include "random_tree_subgraph.hpp" #include <unordered_m...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/split_connected_components.hpp
.hpp
1,673
46
#ifndef _SPLIT_CONNECTED_COMPONENTS_HPP #define _SPLIT_CONNECTED_COMPONENTS_HPP // This can be done easily in O(n log(n)); here it is done in a // slightly less straightforward way to get an O(n) runtime. template <typename VARIABLE_KEY> std::vector<InferenceGraph<VARIABLE_KEY> > split_connected_components(InferenceGr...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/ConstantMultiplierMessagePasser.hpp
.hpp
3,683
96
#ifndef _CONSTANTMULTIPLIERMESSAGEPASSER_HPP #define _CONSTANTMULTIPLIERMESSAGEPASSER_HPP #include "ContextFreeMessagePasser.hpp" template <typename VARIABLE_KEY> class ConstantMultiplierMessagePasser: public MessagePasser<VARIABLE_KEY> { protected: Vector<double> _scale; Vector<double> _one_over_scale; PMF _me...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/SetQueue.hpp
.hpp
4,369
156
#ifndef _SETQUEUE_HPP #define _SETQUEUE_HPP #include <set> #include <unordered_map> #include <iostream> template <typename VARIABLE_KEY> class SetQueue { protected: double _max_priority; // This needs to use std::set instead of std::unordered_set because // the ordering is used (it used in a manner similar to a...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/HUGINMessagePasser.hpp
.hpp
4,853
144
#ifndef _HUGINMESSAGEPASSER_HPP #define _HUGINMESSAGEPASSER_HPP #include "PNormMixin.hpp" #include "ContextFreeMessagePasser.hpp" // Note: There is an unexploited speedup when there are only two // edges. In that case, it is better to solve it as a Shafer-Shenoy, // where nothing is cached, since the outgoing message...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/ContextFreeMessagePasser.hpp
.hpp
753
26
#ifndef _CONTEXTFREEMESSAGEPASSER_HPP #define _CONTEXTFREEMESSAGEPASSER_HPP #include "MessagePasser.hpp" // ContextFreeMessagePasser types do not have distinct roles for // messages in or out; this contrasts with e.g. probabilistic // addition, where the output edge needs to be labeled as distinct // from the input e...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/TreeScheduler.hpp
.hpp
421
10
// TODO: find extreme vertices (which must be leaves) and seed with those extreme vertices that can pass ab initio. // Do not wake other MPs, even those that could have passed ab initio, unless they have received messages on all other edges // Note that this strategy will fail if the extreme vertices cannot // pass a...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/random_tree_subgraph.hpp
.hpp
1,076
35
#ifndef _RANDOM_TREE_SUBGRAPH_HPP #define _RANDOM_TREE_SUBGRAPH_HPP // Note: Assumes graph is connected (otherwise, split into connected // compoonents and then call) template <typename VARIABLE_KEY> std::list<MessagePasser<VARIABLE_KEY>* > random_tree_subgraph(InferenceGraph<VARIABLE_KEY> & ig) { // Note: doing ran...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/HybridFIFOPriorityScheduler.hpp
.hpp
1,901
57
#ifndef _HYBRIDFIFOPRIORITYSCHEDULER_HPP #define _HYBRIDFIFOPRIORITYSCHEDULER_HPP #include "FIFOScheduler.hpp" #include "PriorityScheduler.hpp" // Combines FIFOScheduler and PriorityScheduler: first run // FIFOScheduler (this is useful for solving ). template <typename VARIABLE_KEY> class HybridFIFOPriorityScheduler ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/ConvolutionTreeMessagePasser.hpp
.hpp
2,690
75
#ifndef _CONVOLUTIONTREEMESSAGEPASSER_HPP #define _CONVOLUTIONTREEMESSAGEPASSER_HPP #include "PNormMixin.hpp" #include "ContextFreeMessagePasser.hpp" #include "ConvolutionTree.hpp" template <typename VARIABLE_KEY> class ConvolutionTreeMessagePasser : public MessagePasser<VARIABLE_KEY>, public PNormMixin { protected: ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/TransformMessagePasser.hpp
.hpp
1,679
40
#ifndef _TRANSFORMMESSAGEPASSER_HPP #define _TRANSFORMMESSAGEPASSER_HPP #include "ContextFreeMessagePasser.hpp" template <typename VARIABLE_KEY> class TransformMessagePasser : public MessagePasser<VARIABLE_KEY> { protected: void receive_message_in(unsigned long index) { // Reorder to match _ordered_variables an...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/InferenceEngine.hpp
.hpp
409
17
#ifndef _INFERENCEENGINE_HPP #define _INFERENCEENGINE_HPP #include "../PMF/LabeledPMF.hpp" template <typename VARIABLE_KEY> class InferenceEngine { public: virtual std::vector<LabeledPMF<VARIABLE_KEY> > estimate_posteriors(const std::vector<std::vector<VARIABLE_KEY> > & joint_distributions_to_retrieve) = 0; virt...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Engine/PNormMixin.hpp
.hpp
165
15
#ifndef _PNORMMIXIN_HPP #define _PNORMMIXIN_HPP class PNormMixin { public: const double p; public: PNormMixin(double p_param): p(p_param) { } }; #endif
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Evergreen/TableDependency.hpp
.hpp
928
34
#ifndef _TABLEDEPENDENCY_HPP #define _TABLEDEPENDENCY_HPP #include "Dependency.hpp" #include "../PMF/LabeledPMF.hpp" template <typename VARIABLE_KEY> class TableDependency : public Dependency<VARIABLE_KEY>, public PNormMixin { protected: LabeledPMF<VARIABLE_KEY> _lpmf; public: TableDependency(const LabeledPMF<...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Evergreen/AdditiveDependency.hpp
.hpp
2,244
61
#ifndef _ADDITIVEDEPENDENCY_HPP #define _ADDITIVEDEPENDENCY_HPP #include "../Engine/ConvolutionTreeMessagePasser.hpp" #include "Dependency.hpp" template <typename VARIABLE_KEY> class AdditiveDependency : public Dependency<VARIABLE_KEY>, public PNormMixin { protected: std::vector<std::vector<VARIABLE_KEY> > _inputs;...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Evergreen/evergreen.hpp
.hpp
1,863
75
#ifndef _EVERGREEN_HPP #define _EVERGREEN_HPP // Create a macro for ALWAYS_INLINE (different modifiers on different compilers) #if defined(_MSC_VER) #define EVERGREEN_ALWAYS_INLINE __forceinline #else #define EVERGREEN_ALWAYS_INLINE inline __attribute__((always_inline)) #endif // added by jpfeuffer to throw exceptio...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Evergreen/VariableBounds.hpp
.hpp
5,825
118
#include <map> #ifndef _VARIABLEBOUNDS_HPP #define _VARIABLEBOUNDS_HPP template <typename VARIABLE_KEY> std::map<VARIABLE_KEY, std::pair<long, long> > find_bounds_from_joint(const LabeledPMF<VARIABLE_KEY> & _joint) { std::map<VARIABLE_KEY, std::pair<long, long> > var_to_bounds; for (const VARIABLE_KEY & var : _joi...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Evergreen/BruteForceInferenceEngine.hpp
.hpp
5,918
131
#ifndef _BRUTEFORCEINFERENCEENGINE_HPP #define _BRUTEFORCEINFERENCEENGINE_HPP #include "TableDependency.hpp" template <typename VARIABLE_KEY> class BruteForceInferenceEngine; #include "../Utility/inference_utilities.hpp" #include "../Engine/InferenceEngine.hpp" #include "AdditiveDependency.hpp" #include "VariableBound...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Evergreen/PseudoAdditiveDependency.hpp
.hpp
4,759
122
#ifndef _PSEUDOADDITIVEDEPENDENCY_HPP #define _PSEUDOADDITIVEDEPENDENCY_HPP #include <map> #include <limits> #include "../Engine/ConvolutionTreeMessagePasser.hpp" #include "TableDependency.hpp" // PseudoAdditiveDependency behaves similar to AdditiveDependency, but // in contrast, it works with brute force, creating a...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Evergreen/BetheInferenceGraphBuilder.hpp
.hpp
5,573
127
#ifndef _BETHEINFERENCEGRAPHBUILDER_HPP #define _BETHEINFERENCEGRAPHBUILDER_HPP #include "InferenceGraphBuilder.hpp" // Note: BetheInferenceGraphBuilder is useful for medium-sized, // densely connected graphs. For large chain graphs, simply build an // HMM or the HMM-like tree decomposition (no automated builder for ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Evergreen/ConstantMultiplierDependency.hpp
.hpp
3,219
71
#ifndef _CONSTANTMULTIPLIERDEPENDENCY_HPP #define _CONSTANTMULTIPLIERDEPENDENCY_HPP #include "../Engine/ConstantMultiplierMessagePasser.hpp" #include "Dependency.hpp" // For building dependencies of the form {Y0,Y1,...} = {X0,X1,...} * {s0,s1,...}. // dithering_sigma is used when the outcomes map to floating point /...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Evergreen/InferenceGraphBuilder.hpp
.hpp
2,856
87
#ifndef _INFERENCEGRAPHBUILDER_HPP #define _INFERENCEGRAPHBUILDER_HPP #include "../Engine/InferenceGraph.hpp" #include "../Engine/Hyperedge.hpp" #include "../Engine/SetHash.hpp" #include "Dependency.hpp" template <typename VARIABLE_KEY> class InferenceGraphBuilder { private: bool _has_created_graph; protected: ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Evergreen/Dependency.hpp
.hpp
963
27
#ifndef _DEPENDENCY_HPP #define _DEPENDENCY_HPP template <typename VARIABLE_KEY> class InferenceGraphBuilder; template <typename VARIABLE_KEY> class Dependency { public: // The idea here is that dependencies create message passers and // bind them to context free message passers through which they // reach the ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Utility/L1Regularization.hpp
.hpp
2,404
57
#ifndef _L1REGULARIZATION_HPP #define _L1REGULARIZATION_HPP #include "to_string.hpp" // Note: This is for regularizing 1D variables only thus far; it could // be generalized (but regularizing with multidimensional indicator // variables would only be interesting if the likelihood function on // the sum of the indicat...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Utility/to_string.hpp
.hpp
240
16
#ifndef _TO_STRING_HPP #define _TO_STRING_HPP #include <string> #include <sstream> template <typename T> std::string to_string(const T & rhs) { std::string res; std::ostringstream ost(res); ost << rhs; return ost.str(); } #endif
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Utility/Clock.hpp
.hpp
657
30
#ifndef _CLOCK_HPP #define _CLOCK_HPP #include <iostream> #include <iomanip> #include <chrono> class Clock { protected: std::chrono::steady_clock::time_point startTime; public: Clock() { tick(); } void tick() { startTime = std::chrono::steady_clock::now(); } float tock() { std::chrono::steady_...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Utility/sign.hpp
.hpp
125
10
#ifndef _SIGN_HPP #define _SIGN_HPP template <typename T> int sign(T val) { return (val > T(0)) - (val < T(0)); } #endif
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Utility/shuffled_sequence.hpp
.hpp
375
17
#ifndef _SHUFFLED_SEQUENCE_HPP #define _SHUFFLED_SEQUENCE_HPP inline std::vector<unsigned long> shuffled_sequence(const unsigned long N) { std::vector<unsigned long> result(N); for (unsigned long i=0; i<N; ++i) result[i] = i; // Swap with random index: for (unsigned long i=0; i<N; ++i) std::swap(resul...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Utility/ComparableMixin.hpp
.hpp
445
23
#ifndef _COMPARABLEMIXIN_H #define _COMPARABLEMIXIN_H template <typename T> class ComparableMixin { public: friend bool operator >(T lhs, T rhs) { return !( lhs < rhs || lhs == rhs ); } friend bool operator !=(T lhs, T rhs) { return !( lhs == rhs ); } friend bool operator >=(T lhs, T rhs) { retur...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Utility/graph_to_dot.hpp
.hpp
4,655
156
#ifndef _GRAPH_TO_DOT_HPP #define _GRAPH_TO_DOT_HPP #include <fstream> template <typename VARIABLE_KEY> void graph_to_dot(const InferenceGraph<VARIABLE_KEY> & ig, std::ostream & os) { auto print_map = [&os](const std::map<std::string, std::string> & properties) { unsigned int i=0; os << "[ "; for (cons...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Utility/draw_dot.py
.py
944
33
import pygraphviz as pgv import sys def main(argv): if len(argv) not in (2,3,4,5): print('Usage: draw_dot.py <graph .dot> <output image file> [layout, default is neato; optionally multiple layouts separated by ","] [overlap mode {scale, false}, default is false] [label edges {0,1}]') else: layo...
Python
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Utility/LogDouble.hpp
.hpp
5,826
201
#ifndef _LOGDOUBLE_H #define _LOGDOUBLE_H #include <math.h> #include <limits> #include <iostream> #include <assert.h> #include "ComparableMixin.hpp" #include "sign.hpp" // TODO: test for compatibility with Vector<LogDouble>, which will // initialize sign to zero, log_absolute_value to zero. class LogDouble : public...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Utility/draw_dot_interactive.py
.py
391
18
import pygraphviz as pgv import sys import pylab as P #P.ion() def main(argv): if len(argv) != 2: print('Usage: draw_dot.py <graph .dot> <graph .png output>') else: G = pgv.AGraph(argv[0]) G.layout(prog='circo') G.layout(prog='neato', args='-Goverlap=scale -Gsplines=true') ...
Python
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Utility/vector_ostream.hpp
.hpp
359
21
#ifndef _VECTOR_OSTREAM_HPP #define _VECTOR_OSTREAM_HPP #include <iostream> #include <vector> template <typename T> std::ostream & operator <<(std::ostream & os, std::vector<T> & rhs) { os << "{"; for (unsigned long i=0; i<rhs.size(); ++i) { os << rhs[i]; if (i+1 != rhs.size()) { os << ", "; } ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/evergreen/src/Utility/inference_utilities.hpp
.hpp
5,536
159
#ifndef _INFERENCE_UTILITIES_HPP #define _INFERENCE_UTILITIES_HPP #include "Clock.hpp" #include <iostream> #include <algorithm> template<template <typename, typename...> class CONTAINER, typename T, typename ...OTHER_ARGS> std::vector<std::vector<T> > make_singletons(const CONTAINER<T, OTHER_ARGS...> & var_container)...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/eol-bspline/BSpline/BSpline.cpp
.cpp
5,056
174
// -*- mode: c++; c-basic-offset: 4; -*- /************************************************************************ * Copyright 2009 University Corporation for Atmospheric Research. * All rights reserved. * * Use of this code is subject to the standard BSD license: * * http://www.opensource.org/licenses/bsd-licen...
C++
3D
OpenMS/OpenMS
src/openms/extern/eol-bspline/BSpline/BSplineLib.cpp
.cpp
867
33
/************************************************************************ * Copyright 2009 University Corporation for Atmospheric Research. * All rights reserved. * * Use of this code is subject to the standard BSD license: * * http://www.opensource.org/licenses/bsd-license.html * * See the COPYRIGHT file in t...
C++
3D
OpenMS/OpenMS
src/openms/extern/eol-bspline/BSpline/BSplineBase.cpp
.cpp
21,545
660
/************************************************************************ * Copyright 2009 University Corporation for Atmospheric Research. * All rights reserved. * * Use of this code is subject to the standard BSD license: * * http://www.opensource.org/licenses/bsd-license.html * * See the COPYRIGHT file in t...
C++
3D
OpenMS/OpenMS
src/openms/extern/eol-bspline/BSpline/BSplineBase.h
.h
13,351
339
/************************************************************************ * Copyright 2009 University Corporation for Atmospheric Research. * All rights reserved. * * Use of this code is subject to the standard BSD license: * * http://www.opensource.org/licenses/bsd-license.html * * See the COPYRIGHT file in t...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/eol-bspline/BSpline/BandedMatrix.h
.h
8,076
381
/* -*- mode: c++; c-basic-offset: 4; -*- */ /************************************************************************ * Copyright 2009 University Corporation for Atmospheric Research. * All rights reserved. * * Use of this code is subject to the standard BSD license: * * http://www.opensource.org/licenses/bsd-li...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/eol-bspline/BSpline/BSpline.h
.h
3,662
123
/* -*- mode: c++; c-basic-offset: 4; -*- */ /************************************************************************ * Copyright 2009 University Corporation for Atmospheric Research. * All rights reserved. * * Use of this code is subject to the standard BSD license: * * http://www.opensource.org/licenses/bsd-li...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/BezierCurve.h
.h
6,243
179
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Logger.h> #...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/ConvexPolyhedron3.h
.h
3,852
99
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/AlignedBox....
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/CosEstimate.h
.h
4,593
140
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Math.h> //...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/TriangleKey.h
.h
3,703
123
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/FeatureKey....
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/DistSegment3Triangle3.h
.h
2,956
80
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/DistLine3Tr...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/Mesh.h
.h
27,156
692
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Logger.h> #...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/IntrLine3Cylinder3.h
.h
10,352
259
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/FIQuery.h> ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/CurveExtractorSquares.h
.h
18,955
471
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/CurveExtrac...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/BSNumber.h
.h
45,754
1,426
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.07.04 #pragma once #include <Mathematics/BitHacks.h>...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/BSPPolygon2.h
.h
30,008
874
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Logger.h> #...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/RootsPolynomial.h
.h
41,862
1,070
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Math.h> #in...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/RiemannianGeodesic.h
.h
18,254
454
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/GMatrix.h> ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/ApprOrthogonalLine3.h
.h
4,824
130
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/ApprQuery.h...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/CurvatureFlow3.h
.h
2,496
62
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/PdeFilter3....
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/BSRational.h
.h
32,756
1,046
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/BSNumber.h>...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/CurveExtractor.h
.h
10,064
284
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Logger.h> #...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/DisjointIntervals.h
.h
12,744
404
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <cstddef> #include <cstd...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/LDLTDecomposition.h
.h
28,270
817
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Matrix.h> #...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/IntrSegment2AlignedBox2.h
.h
6,472
167
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/IntrInterva...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/ContEllipsoid3.h
.h
6,373
165
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/ApprGaussia...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/IntrSegment2Circle2.h
.h
3,076
100
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/IntrInterva...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/ConvertCoordinates.h
.h
13,279
357
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Matrix.h> #...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/IntrAlignedBox2Circle2.h
.h
13,384
363
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/FIQuery.h> ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/SharedPtrCompare.h
.h
2,585
87
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <memory> // Comparison ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/ParticleSystem.h
.h
7,342
227
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Vector.h> #...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/Polynomial1.h
.h
18,508
599
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Logger.h> #...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/IntrRay2Circle2.h
.h
2,840
95
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/IntrInterva...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/SWInterval.h
.h
13,585
471
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Logger.h> #...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/ApprEllipseByArcs.h
.h
4,464
120
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/ContScribeC...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/BSplineSurface.h
.h
6,764
174
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/BasisFuncti...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/IntrOrientedBox2Cone2.h
.h
4,396
112
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/IntrRay2Ori...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/ContOrientedBox3.h
.h
7,418
199
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/ApprGaussia...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/FeatureKey.h
.h
2,980
106
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/HashCombine...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/DistPlane3AlignedBox3.h
.h
2,101
63
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/DistPlane3C...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/IntrLine2Line2.h
.h
6,952
192
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.03.25 #pragma once #include <Mathematics/Vector2.h> ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/DistSegment3Rectangle3.h
.h
3,030
82
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/DistLine3Re...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/IntrRay3Plane3.h
.h
3,258
112
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/IntrLine3Pl...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/Array3.h
.h
4,710
167
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <cstddef> #include <cstd...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/MeshCurvature.h
.h
11,685
286
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Matrix2x2.h...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/GradientAnisotropic2.h
.h
4,047
113
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/PdeFilter2....
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/CurveExtractorTriangles.h
.h
8,539
228
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/CurveExtrac...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/ApprSphere3.h
.h
6,934
172
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Hypersphere...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/IntrOrientedBox3Sphere3.h
.h
3,572
107
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/DistPointOr...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/IntrSegment2OrientedBox2.h
.h
4,282
126
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/IntrSegment...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/TetrahedronKey.h
.h
5,147
161
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/FeatureKey....
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/CurvatureFlow2.h
.h
1,875
57
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/PdeFilter2....
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/CanonicalBox.h
.h
3,231
106
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Vector.h> ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/IntrHalfspace3Cylinder3.h
.h
1,754
54
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/TIQuery.h> ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/OdeSolver.h
.h
1,671
57
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/GVector.h> ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/ApprOrthogonalPlane3.h
.h
4,952
132
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.17 #pragma once #include <Mathematics/ApprQuery.h...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/QFNumber.h
.h
12,446
409
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Logger.h> ...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/FrenetFrame.h
.h
3,967
133
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/ParametricC...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/ContLozenge3.h
.h
6,764
215
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/ApprGaussia...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/Hyperellipsoid.h
.h
11,978
349
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Matrix.h> #...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/ContCircle2.h
.h
2,712
89
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/Hypersphere...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/IntrAlignedBox3Sphere3.h
.h
24,919
612
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/DistPointAl...
Unknown
3D
OpenMS/OpenMS
src/openms/extern/GTE/Mathematics/DistPlane3CanonicalBox3.h
.h
9,575
254
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2022 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.06 #pragma once #include <Mathematics/DCPQuery.h>...
Unknown