Eigen::StlThreadEnvironment Struct Reference

#include <ThreadEnvironment.h>

Classes

class  EnvThread
 
struct  Task
 

Public Member Functions

EnvThreadCreateThread (std::function< void()> f)
 
Task CreateTask (std::function< void()> f)
 
void ExecuteTask (const Task &t)
 

Member Function Documentation

◆ CreateTask()

Task Eigen::StlThreadEnvironment::CreateTask ( std::function< void()>  f)
inline
37 { return Task{std::move(f)}; }
static int f(const TensorMap< Tensor< int, 3 > > &tensor)
Definition: cxx11_tensor_map.cpp:237

References f().

◆ CreateThread()

EnvThread* Eigen::StlThreadEnvironment::CreateThread ( std::function< void()>  f)
inline
36 { return new EnvThread(std::move(f)); }

References f().

◆ ExecuteTask()

void Eigen::StlThreadEnvironment::ExecuteTask ( const Task t)
inline
38 { t.f(); }
t
Definition: plotPSD.py:36

References plotPSD::t.


The documentation for this struct was generated from the following file: