chg code guide

This commit is contained in:
tqchen@graphlab.com 2014-08-27 19:31:49 -07:00
parent b162acb858
commit 4369bc2bfd
2 changed files with 2 additions and 2 deletions

View File

@ -41,4 +41,4 @@ install:
cp -f -r $(BIN) $(INSTALL_PATH) cp -f -r $(BIN) $(INSTALL_PATH)
clean: clean:
$(RM) $(OBJ) $(BIN) $(SLIB) $(RLIB) *~ */*~ */*/*~ $(RM) $(OBJ) $(BIN) $(SLIB) *.o *~ */*~ */*/*~

View File

@ -13,10 +13,10 @@ Project Logical Layout
File Naming Convention File Naming Convention
======= =======
* The project is templatized, to make it easy to adjust input data structure.
* .h files are data structures and interface, which are needed to use functions in that layer. * .h files are data structures and interface, which are needed to use functions in that layer.
* -inl.hpp files are implementations of interface, like cpp file in most project. * -inl.hpp files are implementations of interface, like cpp file in most project.
- You only need to understand the interface file to understand the usage of that layer - You only need to understand the interface file to understand the usage of that layer
* In each folder, there can be a .cpp file, that compiles the module of that layer
How to Hack the Code How to Hack the Code
====== ======