diff --git a/include/AbstractState.h b/include/AbstractState.h index 7883904..d818aa8 100644 --- a/include/AbstractState.h +++ b/include/AbstractState.h @@ -71,9 +71,9 @@ public: // everything is public, because IDGAF AbstractState(unsigned int AddressIn) { Addr = AddressIn; } - AbstractState(Address Addr) { Sets[Addr.Index].Associativity[0] = {{Addr.Tag}}; } - - + AbstractState(Address Addr) { + Sets[Addr.Index].Associativity[0] = {{Addr.Tag}}; + } /** * @brief Executes an Must LRU Join on the AbstractCacheState @@ -81,13 +81,13 @@ public: // everything is public, because IDGAF * @param In, AbstractState that gets joined into the State. */ void mustJoin(AbstractState In) { - /** - * The exercise is to Fill this function with an LRU must Join. - * For this you need to use Sets. Associativity and Blocks. - */ + /** + * The exercise is to Fill this function with an LRU must Join. + * For this you need to use Sets. Associativity and Blocks. + */ } - /** + /** * @brief Checks if Address Addr is in Cache * * @param Addr Address to check. diff --git a/include/CacheType.h b/include/CacheType.h index e2dab1d..ad36b8b 100644 --- a/include/CacheType.h +++ b/include/CacheType.h @@ -11,7 +11,7 @@ class CacheType; /** * @brief Class to Check if Set Associate Cache is valid. - * + * */ class CacheType { public: diff --git a/include/ConcreteState.h b/include/ConcreteState.h index 24958e1..db346e1 100644 --- a/include/ConcreteState.h +++ b/include/ConcreteState.h @@ -1,7 +1,7 @@ #ifndef CONCRETESTATE_H #define CONCRETESTATE_H -//Currently Unused. +// Currently Unused. #include #include @@ -33,9 +33,7 @@ public: // everything is public, because IDGAF std::map Sets; - ConcreteState(Address Addr) { - Sets[Addr.Index].Entries[0]= Addr.Tag; - } + ConcreteState(Address Addr) { Sets[Addr.Index].Entries[0] = Addr.Tag; } }; // namespace #endif // CONCRETESTATE_H \ No newline at end of file