Consider the following undirected graph:
a
/ \
/ \
b-------c
\ /
\ /
d
From the top-voted answer to Finding all cycles in undirected graphs I recently learned that the term Simple Cycle includes all three of the cycles in this graph: abca, bcdb, and abdca. (I originally thought Simple Cycles would only include abca and bdcb.)
Yet the Euler Equation would tell me that there are E - N + 1 = 5 - 4 + 1 = 2 cycles
Clearly these 2 cycles would be abca and bcdb.
What is the correct term for just those cycles?