Move secondary includes to accl subdir to prevent bloating the include space with common names like 'common.hpp', which could result in naming conflicts with user files. Leaving accl.hpp in the main folder makes it easier for users to include (#include <accl.hpp> vs #include <accl/accl.hpp>) and makes sure users don't have to change the include of current applications.
Move secondary includes to accl subdir to prevent bloating the include space with common names like 'common.hpp', which could result in naming conflicts with user files. Leaving accl.hpp in the main folder makes it easier for users to include (
#include <accl.hpp>
vs#include <accl/accl.hpp>
) and makes sure users don't have to change the include of current applications.