Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emulab-devel
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Hussamuddin Nasir
emulab-devel
Commits
e04ad729
Commit
e04ad729
authored
Jul 03, 2002
by
Leigh Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Insert Copyrights.
parent
b9e6d43b
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
104 additions
and
3 deletions
+104
-3
assign/GNUmakefile.in
assign/GNUmakefile.in
+4
-1
assign/about.txt
assign/about.txt
+6
-0
assign/assign.cc
assign/assign.cc
+6
-0
assign/assign_internals.txt
assign/assign_internals.txt
+6
-0
assign/assign_todo.txt
assign/assign_todo.txt
+6
-0
assign/common.h
assign/common.h
+6
-0
assign/config.c
assign/config.c
+2
-1
assign/config.h
assign/config.h
+2
-1
assign/parse_ptop.cc
assign/parse_ptop.cc
+6
-0
assign/parse_top.cc
assign/parse_top.cc
+6
-0
assign/pclass.cc
assign/pclass.cc
+6
-0
assign/pclass.h
assign/pclass.h
+6
-0
assign/pclass_vclass_fixed.txt
assign/pclass_vclass_fixed.txt
+6
-0
assign/physical.h
assign/physical.h
+6
-0
assign/score.cc
assign/score.cc
+6
-0
assign/score.h
assign/score.h
+6
-0
assign/vclass.cc
assign/vclass.cc
+6
-0
assign/vclass.h
assign/vclass.h
+6
-0
assign/virtual.h
assign/virtual.h
+6
-0
No files found.
assign/GNUmakefile.in
View file @
e04ad729
#
# Insert Copyright Here.
# EMULAB-COPYRIGHT
# Copyright (c) 2000-2002 University of Utah and the Flux Group.
# All rights reserved.
#
SRCDIR = @srcdir@
TESTBED_SRCDIR = @top_srcdir@
OBJDIR = ..
...
...
assign/about.txt
View file @
e04ad729
#
# EMULAB-COPYRIGHT
# Copyright (c) 2000-2002 University of Utah and the Flux Group.
# All rights reserved.
#
Interesting things about Assign
This document is not meant to be a cohesive whole. Rather a brain
...
...
assign/assign.cc
View file @
e04ad729
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2002 University of Utah and the Flux Group.
* All rights reserved.
*/
#include <LEDA/graph_alg.h>
#include <LEDA/graphwin.h>
#include <LEDA/ugraph.h>
...
...
assign/assign_internals.txt
View file @
e04ad729
#
# EMULAB-COPYRIGHT
# Copyright (c) 2000-2002 University of Utah and the Flux Group.
# All rights reserved.
#
This document attempts to describe some of the internals of assign.
Much of the simulated annealing code of assign is not documented here
...
...
assign/assign_todo.txt
View file @
e04ad729
#
# EMULAB-COPYRIGHT
# Copyright (c) 2000-2002 University of Utah and the Flux Group.
# All rights reserved.
#
If anyone wants to work on any of these, please contact and discuss
the issues with me (calfeld@cs.utah.edu).
...
...
assign/common.h
View file @
e04ad729
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2002 University of Utah and the Flux Group.
* All rights reserved.
*/
#ifndef __COMON_H
#define __COMON_H
...
...
assign/config.c
View file @
e04ad729
/*
* Copyright (c) 1999-2001 The University of Utah and the Flux Group.
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2002 University of Utah and the Flux Group.
* All rights reserved.
*/
...
...
assign/config.h
View file @
e04ad729
/*
* Copyright (c) 1999-2001 The University of Utah and the Flux Group.
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2002 University of Utah and the Flux Group.
* All rights reserved.
*/
...
...
assign/parse_ptop.cc
View file @
e04ad729
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2002 University of Utah and the Flux Group.
* All rights reserved.
*/
/*
* parse ptop files. These are basic topologies
* that are used to represent the physical topology.
...
...
assign/parse_top.cc
View file @
e04ad729
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2002 University of Utah and the Flux Group.
* All rights reserved.
*/
/*
* Parse chris' ".top" file format into a LEDA graph
*/
...
...
assign/pclass.cc
View file @
e04ad729
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2002 University of Utah and the Flux Group.
* All rights reserved.
*/
#include <LEDA/graph_alg.h>
#include <LEDA/graphwin.h>
...
...
assign/pclass.h
View file @
e04ad729
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2002 University of Utah and the Flux Group.
* All rights reserved.
*/
#ifndef __PCLASS_H
#define __PCLASS_H
...
...
assign/pclass_vclass_fixed.txt
View file @
e04ad729
#
# EMULAB-COPYRIGHT
# Copyright (c) 2000-2002 University of Utah and the Flux Group.
# All rights reserved.
#
Terminology:
pnode = physical node
vnode = virtual node
...
...
assign/physical.h
View file @
e04ad729
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2002 University of Utah and the Flux Group.
* All rights reserved.
*/
#ifndef __PHYSICAL_H
#define __PHYSICAL_H
...
...
assign/score.cc
View file @
e04ad729
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2002 University of Utah and the Flux Group.
* All rights reserved.
*/
/*
* ASSUMPTIONS:
* 1. Any switch can get to any other switch either directly
...
...
assign/score.h
View file @
e04ad729
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2002 University of Utah and the Flux Group.
* All rights reserved.
*/
#ifndef _SCORE_H
#define _SCORE_H
...
...
assign/vclass.cc
View file @
e04ad729
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2002 University of Utah and the Flux Group.
* All rights reserved.
*/
#include <LEDA/graph_alg.h>
#include <LEDA/graphwin.h>
...
...
assign/vclass.h
View file @
e04ad729
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2002 University of Utah and the Flux Group.
* All rights reserved.
*/
#ifndef __VCLASS_H
#define __VCLASS_H
...
...
assign/virtual.h
View file @
e04ad729
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2002 University of Utah and the Flux Group.
* All rights reserved.
*/
#ifndef __VIRTUAL_H
#define __VIRTUAL_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment