Mercurial > hg > Members > Moririn
view src/parallel_execution/compare.c @ 408:8ee89eefbc6d
Fix twice
author | Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 06 Sep 2017 21:54:22 +0900 |
parents | a4507906938c |
children |
line wrap: on
line source
#include "context.h" enum Relational compare(struct Node* node1, struct Node* node2) { int key1 = node1->key; int key2 = node2->key; if (key1 == key2) { return EQ; } else if (key1 < key2) { return GT; } else { return LT; } }