2019-11-11 16:28:42 +01:00
|
|
|
// Parallax Static Timing Analyzer
|
|
|
|
|
// Copyright (c) 2019, Parallax Software, Inc.
|
|
|
|
|
// All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
// No part of this document may be copied, transmitted or
|
|
|
|
|
// disclosed in any form or fashion without the express
|
|
|
|
|
// written consent of Parallax Software, Inc.
|
|
|
|
|
|
2021-07-20 04:19:26 +02:00
|
|
|
#pragma once
|
2019-11-11 16:28:42 +01:00
|
|
|
|
2020-04-05 23:53:44 +02:00
|
|
|
#include "ObjectId.hh"
|
2019-11-11 16:28:42 +01:00
|
|
|
|
|
|
|
|
// VertexId typedef for Networks to get/set on pins.
|
|
|
|
|
|
|
|
|
|
namespace sta {
|
|
|
|
|
|
|
|
|
|
typedef ObjectId VertexId;
|
|
|
|
|
|
|
|
|
|
static constexpr VertexId vertex_id_null = object_id_null;
|
|
|
|
|
|
2021-07-22 03:30:44 +02:00
|
|
|
} // namespace
|