Code quality: significant cleaning of namespaces, etc..

This commit is contained in:
Philippe Tillet
2015-08-12 00:46:51 -07:00
parent 5a8cfede45
commit ff4cf94df7
31 changed files with 454 additions and 490 deletions

View File

@@ -4,7 +4,7 @@
#include "isaac/array.h"
#include "isaac/exception/unknown_datatype.h"
#include "isaac/database/database.h"
#include "isaac/profiles/profiles.h"
#include "isaac/symbolic/execute.h"
@@ -169,7 +169,7 @@ array& array::operator=(controller<TYPE> const & c)
assert(dtype_ == c.x().dtype());
array_expression expression(*this, c.x(), op_element(OPERATOR_BINARY_TYPE_FAMILY, OPERATOR_ASSIGN_TYPE), context_, dtype_, shape_);
execute(controller<array_expression>(expression, c.execution_options(), c.dispatcher_options(), c.compilation_options()),
isaac::database::get(c.execution_options().queue(context_)));
isaac::profiles::get(c.execution_options().queue(context_)));
return *this;
}