Remove exclusion from Doxyfile (#2741)
Summary: The Doxyfile is used to generate the Faiss documentation in faiss.ai. In its current config it skips over important classes like ProductQuantizer. Hence this diff that forces it to pass over the impl/ subdirectories. Pull Request resolved: https://github.com/facebookresearch/faiss/pull/2741 Reviewed By: mlomeli1 Differential Revision: D43732475 Pulled By: mdouze fbshipit-source-id: cf968238838051000fa31b4388e1f2beb7f451dbpull/2745/head
parent
8ccd800986
commit
0815970581
2
Doxyfile
2
Doxyfile
|
@ -786,7 +786,7 @@ EXCLUDE_SYMLINKS = NO
|
|||
# Note that the wildcards are matched against the file with absolute path, so to
|
||||
# exclude all test directories for example use the pattern */test/*
|
||||
|
||||
EXCLUDE_PATTERNS = */impl/*
|
||||
EXCLUDE_PATTERNS =
|
||||
|
||||
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
|
||||
# (namespaces, classes, functions, etc.) that should be excluded from the
|
||||
|
|
Loading…
Reference in New Issue