build(libcomposition): brought working build system into libcomposition

This commit is contained in:
2025-06-21 11:33:27 -04:00
parent 58de341056
commit db88e308de
24 changed files with 424 additions and 76 deletions

View File

@@ -5,7 +5,7 @@
#include <iostream>
#include "atomicSpecies.h"
namespace serif::atomic {
namespace fourdst::atomic {
struct Species {
std::string m_name; //< Name of the species
std::string m_el; //< Element symbol
@@ -101,9 +101,9 @@ namespace serif::atomic {
namespace std {
template<>
struct hash<serif::atomic::Species> {
size_t operator()(const serif::atomic::Species& s) const noexcept {
struct hash<fourdst::atomic::Species> {
size_t operator()(const fourdst::atomic::Species& s) const noexcept {
return std::hash<std::string>()(s.m_name);
}
};
} // namespace std
} // namespace std