write path spice off path pins

Signed-off-by: James Cherry <[email protected]>
This commit is contained in:
James Cherry
2023-04-15 14:31:47 -07:00
parent dc4bf88582
commit 79fda841d5
4 changed files with 89 additions and 18 deletions
+11 -1
View File
@@ -16,8 +16,16 @@
#pragma once
#include <string>
#include <set>
namespace sta {
using std::string;
using std::set;
typedef set<string> StdStringSet;
class Path;
class StaState;
@@ -33,7 +41,9 @@ writePathSpice(Path *path,
const char *lib_subckt_filename,
// Device model file included in spice file.
const char *model_filename,
const char *power_name,
// Nets off of path to include in the spice run.
StdStringSet *off_path_pin_names,
const char *power_name,
const char *gnd_name,
StaState *sta);