#include "common.h"
#include "tensors.h"
#include "string.h"
#include <algorithm>
#include <sstream>
#include <fstream>
#include <string>
#include <vector>
#include <assert.h>
Go to the source code of this file.
|
| bc |
| The Evaluator determines if an expression needs to be greedily optimized.
|
|
| bc::io |
|
◆ FORWARDED_PARAM
#define FORWARDED_PARAM |
( |
|
dtype, |
|
|
|
name, |
|
|
|
default_value |
|
) |
| |
Value:dtype name##_ = default_value; \
csv_descriptor& name(dtype name) { \
name##_ = name; \
return *this; \
} \
const dtype& name() const { \
return name##_; \
} \
◆ from_string_def
#define from_string_def |
( |
|
dtype, |
|
|
|
... |
|
) |
| |
Value:template<>\
return __VA_ARGS__;\
}
std::string from_string(const std::string &str)
Definition: io.h:36