blob: 302089ace473a69f0754ef0b24d15428f3ac436a [file] [log] [blame]
/**
* Author: Jason Luu
* Date: May 2009
*
* Read a circuit netlist in XML format and populate the netlist data structures for VPR
*/
#ifndef READ_NETLIST_H
#define READ_NETLIST_H
#include "vpr_types.h"
ClusteredNetlist read_netlist(const char *net_file,
const t_arch *arch,
bool verify_file_digests);
#endif