001    // GraphLab Project: http://graphlab.sharif.edu
002    // Copyright (C) 2008 Mathematical Science Department of Sharif University of Technology
003    // Distributed under the terms of the GNU Lesser General Public License (LGPL): http://www.gnu.org/licenses/
004    
005    /*
006     * Pair.java
007     *
008     * Created on January 4, 2005, 2:37 AM
009     */
010    
011    package graphlab.library.util;
012    
013    /**
014     * @author Omid
015     */
016    public class Pair<First, Second> {
017        public First first;
018        public Second second;
019    
020        public Pair(First f, Second s) {
021            first = f;
022            second = s;
023        }
024    
025    }