@@ -65,7 +65,7 @@ namespace CASM {
6565 return _all_settings (" ref" , calc_settings_dir (calctype));
6666 }
6767
68- // / \brief Check filesystem directory structure and return list of all cluster expansion names
68+ // / \brief Check filesystem directory structure and return list of all property names
6969 std::vector<std::string> all_property () const {
7070 return _all_settings (" clex" , m_root / m_clex_dir);
7171 }
@@ -272,13 +272,13 @@ namespace CASM {
272272 }
273273
274274 // / \brief Returns path to eci directory
275- fs::path eci_dir (std::string clex , std::string calctype, std::string ref, std::string bset, std::string eci) const {
276- return clex_dir (clex ) / _calctype (calctype) / _ref (ref) / _bset (bset) / _eci (eci);
275+ fs::path eci_dir (std::string property , std::string calctype, std::string ref, std::string bset, std::string eci) const {
276+ return clex_dir (property ) / _calctype (calctype) / _ref (ref) / _bset (bset) / _eci (eci);
277277 }
278278
279279 // / \brief Returns path to eci.json
280- fs::path eci (std::string clex , std::string calctype, std::string ref, std::string bset, std::string eci) const {
281- return eci_dir (clex , calctype, ref, bset, eci) / " eci.json" ;
280+ fs::path eci (std::string property , std::string calctype, std::string ref, std::string bset, std::string eci) const {
281+ return eci_dir (property , calctype, ref, bset, eci) / " eci.json" ;
282282 }
283283
284284
@@ -297,8 +297,8 @@ namespace CASM {
297297 // -- deprecated ------------------------------------
298298
299299 // / \brief Returns path to eci.out
300- fs::path eci_out (std::string clex , std::string calctype, std::string ref, std::string bset, std::string eci) const {
301- return eci_dir (clex , calctype, ref, bset, eci) / " eci.out" ;
300+ fs::path eci_out (std::string property , std::string calctype, std::string ref, std::string bset, std::string eci) const {
301+ return eci_dir (property , calctype, ref, bset, eci) / " eci.out" ;
302302 }
303303
304304 // / \brief Query aliases file
0 commit comments