#include "node.h"


//****************************************************************************
//
// Function:   Node
//
// Purpose:    constructs a node
//
// Parameters: vert_name - the name of the vertex
//
// Calls:      none
//
// Time Comp:  O(1)
//
// Space Com:  O(1)
//
//****************************************************************************


Node::Node(size_t in_from_id, size_t in_id, float in_weight)
{
   from_id = in_from_id;
   id = in_id;
   weight = in_weight;
   in_network = false;
}


//****************************************************************************
//
// Function:   get_id
//
// Purpose:    returns the id of the node
//
// Parameters: none
//
// Calls:      none
//
// Time Comp:  O(1)
//
// Space Com:  O(1)
//
//****************************************************************************


size_t Node::get_id()
{
   return id;
}