Fermat
processes.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2018, NVIDIA Corporation
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * * Redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer.
9  * * Redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution.
12  * * Neither the name of NVIDIA Corporation nor the
13  * names of its contributors may be used to endorse or promote products
14  * derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
32 #pragma once
33 
34 #include <cugar/linalg/vector.h>
36 #include <cugar/sampling/sampler.h>
37 
38 namespace cugar {
39 
48 template <typename Generator, uint32 DIM>
53 Vector<float,DIM> brownian_bridge(
54  const uint32 L,
55  const uint32 t,
56  Generator gaussian);
57 
63 template <uint32 DIM, typename Distribution, typename Sampler_type>
64 Vector<float,DIM> generate_point(
65  Sampler_type& sampler,
66  Distribution& gaussian);
67 
75 template <uint32 DIM, typename Sequence, typename Distribution>
76 Vector<float,DIM> brownian_bridge(
77  Distribution& gaussian,
78  const float sigma,
79  const uint32 N,
80  const uint32 i,
81  const uint32 L,
82  const uint32 t,
83  const Sequence& sequence);
84 
88 } // namespace cugar
89 
90 #include <cugar/sampling/processes_inline.h>
Defines various distributions.
Vector< float, DIM > brownian_bridge(const uint32 L, const uint32 t, Generator gaussian)
Definition: processes_inline.h:36
Define a vector_view POD type and plain_view() for std::vector.
Definition: diff.h:38
Vector< float, DIM > generate_point(Sampler_type &sampler, Distribution &gaussian)
Definition: processes_inline.h:91