@@ -578,12 +578,6 @@ class ServerContext : public Context {
578
578
void set_crit_paths (const std::vector<tatum::TimingPath>& crit_paths) { crit_paths_ = crit_paths; }
579
579
const std::vector<tatum::TimingPath>& crit_paths () const { return crit_paths_; }
580
580
581
- void set_critical_path_num (int critical_path_num) { critical_path_num_ = critical_path_num; }
582
- int critical_path_num () const { return critical_path_num_; }
583
-
584
- void set_path_type (const std::string& path_type) { path_type_ = path_type; }
585
- const std::string& path_type () const { return path_type_; }
586
-
587
581
void clear_crit_path_elements () { crit_path_element_indexes_.clear (); }
588
582
void set_crit_path_elements (const std::map<std::size_t , std::set<std::size_t >>& crit_path_element_indexes) { crit_path_element_indexes_ = crit_path_element_indexes; }
589
583
std::map<std::size_t , std::set<std::size_t >> crit_path_element_indexes () const { return crit_path_element_indexes_; }
@@ -610,22 +604,6 @@ class ServerContext : public Context {
610
604
*/
611
605
std::vector<tatum::TimingPath> crit_paths_;
612
606
613
- /* *
614
- * @brief Stores the number of critical paths items.
615
- *
616
- * This value is used to generate a critical path report with a certain number of items,
617
- * which will be sent back to the client upon request.
618
- */
619
- int critical_path_num_ = 1 ;
620
-
621
- /* *
622
- * @brief Stores the critical path type.
623
- *
624
- * This value is used to generate a specific type of critical path report and send
625
- * it back to the client upon request.
626
- */
627
- std::string path_type_ = " setup" ;
628
-
629
607
/* *
630
608
* @brief Stores the selected critical path elements.
631
609
*
0 commit comments